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.
46 lines
953 B
46 lines
953 B
//
|
|
// Prototypes for debug dump functions
|
|
//
|
|
|
|
#ifndef _DUMP_H_
|
|
#define _DUMP_H_
|
|
|
|
#ifdef DEBUG
|
|
|
|
EXTERN_C LPCTSTR Dbg_GetReadyState(LONG state);
|
|
|
|
#ifndef DOWNLEVEL_PLATFORM
|
|
EXTERN_C LPCTSTR Dbg_GetGuid(REFGUID rguid, LPTSTR pszBuf, int cch);
|
|
#endif //DOWNLEVEL_PLATFORM
|
|
|
|
EXTERN_C LPCTSTR Dbg_GetBool(BOOL bVal);
|
|
|
|
#ifdef _DATASRC_H_
|
|
EXTERN_C LPCTSTR Dbg_GetLS(LOAD_STATE state);
|
|
#endif
|
|
|
|
#ifdef _MTXARRAY_H_
|
|
EXTERN_C LPCTSTR Dbg_GetAppCmd(APPCMD appcmd);
|
|
#endif
|
|
|
|
#ifdef __simpdata_h__
|
|
EXTERN_C LPCTSTR Dbg_GetOSPRW(OSPRW state);
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define Dbg_GetReadyState(state) TEXT("")
|
|
|
|
#ifndef DOWNLEVEL_PLATFORM
|
|
#define Dbg_GetGuid(rguid, pszBuf, cch) TEXT("")
|
|
#endif //DOWNLEVEL_PLATFORM
|
|
|
|
#define Dbg_GetBool(bVal) TEXT("")
|
|
#define Dbg_GetOSPRW(status) TEXT("")
|
|
#define Dbg_GetLS(status) TEXT("")
|
|
#define Dbg_GetAppCmd(appcmd) TEXT("")
|
|
|
|
#endif // DEBUG
|
|
|
|
|
|
#endif // _DUMP_H_
|