windows-nt/Source/XPSP1/NT/admin/netui/macprint/inc/debug.h

44 lines
645 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*******************************************************************/
/* Copyright(c) 1992 Microsoft Corporation */
/*******************************************************************/
//***
//
// Filename: debug.h
//
// Description: This module debug definitions for the supervisor module.
//
// Author: Narendra Gidwani (nareng) May 22, 1992.
//
// Revision History:
//
//***
#ifndef _DEBUG_
#define _DEBUG_
extern HANDLE hLogFile ;
#if DBG
VOID
DbgPrintf(
char *Format,
...
);
int DbgPrint( char * format, ... );
#define DBGPRINT(args) DbgPrint args
#else
#define DBGPRINT(args)
#endif
#endif // _DEBUG_