Mydll.h
上传用户:nbcables
上传日期:2007-01-11
资源大小:1243k
文件大小:0k
源码类别:

钩子与API截获

开发平台:

Visual C++

  1. #ifndef __mydll_h__
  2. #define __mydll_h__
  3. #define _WIN32_WINNT 0x0400
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <shlwapi.h>
  7. #include <windows.h>
  8. #include <wininet.h>
  9. typedef struct
  10. {
  11. char *module_name;
  12. char *api_name;
  13. int param_count;
  14. char *my_api_name;
  15. int start_pos;
  16. char *friend_my_api_name;
  17. }MYAPIINFO;
  18. #endif