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.

43 lines
593 B

  1. /*
  2. * private stuff in dbghelp
  3. */
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. BOOL
  8. IMAGEAPI
  9. dbghelp(
  10. IN HANDLE hp,
  11. IN OUT PVOID data
  12. );
  13. enum {
  14. dbhNone = 0,
  15. dbhModSymInfo,
  16. dbhDiaVersion,
  17. dbhNumFunctions
  18. };
  19. typedef struct _DBH_MODSYMINFO {
  20. DWORD function;
  21. DWORD sizeofstruct;
  22. DWORD64 addr;
  23. DWORD type;
  24. char file[MAX_PATH + 1];
  25. } DBH_MODSYMINFO, *PDBH_MODSYMINFO;
  26. typedef struct _DBH_DIAVERSION {
  27. DWORD function;
  28. DWORD sizeofstruct;
  29. DWORD ver;
  30. } DBH_DIAVERSION, *PDBH_DIAVERSION;
  31. #ifdef __cplusplus
  32. }
  33. #endif