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.

18 lines
295 B

  1. #pragma once
  2. #include "modtree.h"
  3. HRESULT
  4. HrLoadModuleTree (
  5. OUT CModuleTree* pTree);
  6. HRESULT
  7. HrLoadModuleTreeFromBuffer (
  8. IN const BYTE* pbBuf,
  9. IN ULONG cbBuf,
  10. OUT CModuleTree* pTree);
  11. HRESULT
  12. HrLoadModuleTreeFromFileSystem (
  13. OUT CModuleTree* pTree);