Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
226 B

  1. #pragma once
  2. // NT's PE file
  3. //
  4. class CPeImage
  5. {
  6. public:
  7. HANDLE m_hFile;
  8. HANDLE m_hMapping;
  9. PVOID m_pvImage;
  10. public:
  11. HRESULT
  12. HrOpenFile (
  13. IN PCSTR pszFileName);
  14. VOID
  15. CloseFile ();
  16. };