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.

59 lines
941 B

  1. /*******************************************************************
  2. *
  3. * File : dump.hxx
  4. * Author : Eyal Schwartz
  5. * Copyrights : Microsoft Corp (C) 1996
  6. * Date : 7/15/1998
  7. * Description : definition of dump structures & functions
  8. *
  9. * Revisions : <date> <name> <description>
  10. *******************************************************************/
  11. #ifndef DUMP_HXX
  12. #define DUMP_HXX
  13. // include //
  14. // defines //
  15. // types //
  16. typedef BOOL (*DUMPFUNCTION)(LPVOID lpVoid);
  17. #define DECLARE_DUMPFUNCTION(func) BOOL func(LPVOID lpVoid)
  18. typedef struct _DumpEntry{
  19. LPSTR szName;
  20. DUMPFUNCTION function;
  21. } DUMPENTRY, *PDUMPENTRY;
  22. // exter global variables //
  23. extern DUMPENTRY gfDumpTable[];
  24. extern const INT gcbDumpTable;
  25. //
  26. // BUGBUG: for now as a workaround
  27. //
  28. // #define gcbDumpTable 2
  29. //extern gcbDumpTable;
  30. // functions //
  31. #endif
  32. /******************* EOF *********************/
  33.