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.

28 lines
642 B

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