PELib.h
上传用户:sdguojin
上传日期:2022-07-31
资源大小:1726k
文件大小:0k
源码类别:

系统编程

开发平台:

Visual C++

  1. #ifndef _PELib_H_
  2. #define _PELib_H_
  3. #include "utils.h"
  4. #include <windows.h>
  5. #include <string>
  6. using namespace std;
  7. namespace PELib
  8. {
  9. class CPELib : CZeroClass<CPELib>
  10. {
  11. public:
  12. BOOL Init(wstring str_FileName);
  13. public:
  14. CPELib();
  15. ~CPELib();
  16. public:
  17. wstring m_strFileName;
  18. IMAGE_DOS_HEADER m_DosHeader;
  19. IMAGE_NT_HEADERS32 m_NtHeader;
  20. PIMAGE_SECTION_HEADER m_pSection; 
  21. };
  22. }
  23. #endif