windows-nt/Source/XPSP1/NT/ds/dns/dnsexts/dump.hxx
2020-09-26 16:20:57 +08:00

60 lines
941 B
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*******************************************************************
*
* 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 *********************/