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.

27 lines
611 B

  1. // File32.h: interface for the File32 class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_FILE32_H__228703A1_5E6A_4EE0_9A1F_35385C633FCF__INCLUDED_)
  5. #define AFX_FILE32_H__228703A1_5E6A_4EE0_9A1F_35385C633FCF__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "File.h"
  10. #include "List.h"
  11. class File32 : public File
  12. {
  13. public:
  14. PIMAGE_NT_HEADERS pNthdr;
  15. void *pImageBase;
  16. File32(TCHAR *pszFileName);
  17. virtual ~File32();
  18. void CheckDependencies();
  19. };
  20. #endif // !defined(AFX_FILE32_H__228703A1_5E6A_4EE0_9A1F_35385C633FCF__INCLUDED_)