PeClean.h
上传用户:kuaidait
上传日期:2013-03-31
资源大小:4k
文件大小:0k
源码类别:

文件操作

开发平台:

C/C++

  1. #ifndef __PE_CLEAN_H_
  2. #define __PE_CLEAN_H_
  3. #include <windows.h>
  4. #include <stdio.h>
  5. #include <commctrl.h>
  6. #include "resource.h"
  7. #pragma comment(linker, "/subsystem:windows")
  8. #pragma comment(lib, "comctl32.lib")
  9. HINSTANCE hInst;
  10. HWND hWnd;
  11. HICON hIcon;
  12. char szFileName[MAX_PATH];
  13. IMAGE_NT_HEADERS32 *peHeader;
  14. #endif //__PE_CLEAN_H_