mirror of https://github.com/tongzx/nt5src
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.
60 lines
941 B
60 lines
941 B
/*******************************************************************
|
|
*
|
|
* File : dump.hxx
|
|
* Author : Eyal Schwartz
|
|
* Copyrights : Microsoft Corp (C) 1996
|
|
* Date : 7/15/1998
|
|
* Description : definition of dump structures & functions
|
|
*
|
|
* Revisions : <date> <name> <description>
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
#ifndef DUMP_HXX
|
|
#define DUMP_HXX
|
|
|
|
|
|
|
|
// include //
|
|
|
|
|
|
// defines //
|
|
|
|
|
|
// types //
|
|
|
|
typedef BOOL (*DUMPFUNCTION)(LPVOID lpVoid);
|
|
#define DECLARE_DUMPFUNCTION(func) BOOL func(LPVOID lpVoid)
|
|
|
|
typedef struct _DumpEntry{
|
|
LPSTR szName;
|
|
DUMPFUNCTION function;
|
|
|
|
} DUMPENTRY, *PDUMPENTRY;
|
|
|
|
|
|
// exter global variables //
|
|
extern DUMPENTRY gfDumpTable[];
|
|
extern const INT gcbDumpTable;
|
|
//
|
|
// BUGBUG: for now as a workaround
|
|
//
|
|
// #define gcbDumpTable 2
|
|
//extern gcbDumpTable;
|
|
|
|
|
|
// functions //
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
/******************* EOF *********************/
|
|
|
|
|