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.
31 lines
947 B
31 lines
947 B
/*-----------------------------------------
|
|
//
|
|
// WABExe.h -- externs
|
|
//
|
|
//
|
|
//-----------------------------------------*/
|
|
extern HINSTANCE hInst; // this module's resources instance handle
|
|
extern HINSTANCE hInstApp; // this module's instance handle
|
|
|
|
HRESULT CertFileDisplay(HWND hwnd,
|
|
LPWABOBJECT lpWABObject,
|
|
LPADRBOOK lpAdrBook,
|
|
LPTSTR lpFileName);
|
|
|
|
extern const UCHAR szEmpty[];
|
|
|
|
|
|
#ifdef DEBUG
|
|
#define DebugTrace DebugTraceFn
|
|
#define IFTRAP(x) x
|
|
#define Assert(t) IFTRAP(((t) ? 0 : DebugTrapFn(1,__FILE__,__LINE__,"Assertion Failure: " #t),0))
|
|
#else
|
|
#define DebugTrace 1?0:DebugTraceFn
|
|
#define IFTRAP(x) 0
|
|
#define Assert(t)
|
|
#endif
|
|
|
|
/* Debugging Functions ---------------------------------------------------- */
|
|
VOID FAR CDECL DebugTrapFn(int fFatal, char *pszFile, int iLine, char *pszFormat, ...);
|
|
VOID FAR CDECL DebugTraceFn(char *pszFormat, ...);
|
|
|