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.

51 lines
749 B

  1. /*++
  2. Copyright (c) 1996-1997 Microsoft Corporation
  3. Module Name:
  4. inetdbgp.h
  5. Abstract:
  6. Common header file for NTSDEXTS component source files.
  7. Author:
  8. Murali Krishnan (MuraliK) 22-Aug-1996
  9. Revision History:
  10. --*/
  11. # ifndef _INETDBGP_H_
  12. # define _INETDBGP_H_
  13. //
  14. // Module enumerator.
  15. //
  16. typedef struct _MODULE_INFO {
  17. ULONG_PTR DllBase;
  18. ULONG_PTR EntryPoint;
  19. ULONG SizeOfImage;
  20. CHAR BaseName[MAX_PATH];
  21. CHAR FullName[MAX_PATH];
  22. } MODULE_INFO, *PMODULE_INFO;
  23. typedef
  24. BOOLEAN
  25. (CALLBACK * PFN_ENUMMODULES)(
  26. IN PVOID Param,
  27. IN PMODULE_INFO ModuleInfo
  28. );
  29. BOOLEAN
  30. EnumModules(
  31. IN HANDLE ExtensionCurrentProcess,
  32. IN PFN_ENUMMODULES EnumProc,
  33. IN PVOID Param
  34. );
  35. # endif // _INETDBGP_H_