Leaked source code of windows server 2003
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.

20 lines
368 B

  1. #pragma once
  2. class CModule
  3. {
  4. public:
  5. // The names of the file. Does not include any path information.
  6. //
  7. PSTR m_pszFileName;
  8. // The size of the file.
  9. //
  10. ULONG m_cbFileSize;
  11. public:
  12. static HRESULT
  13. HrCreateInstance (
  14. IN PCSTR pszFileName,
  15. IN ULONG cbFileSize,
  16. OUT CModule** ppMod);
  17. };