windows-nt/Source/XPSP1/NT/admin/netui/macprint/inc/debug.h
2020-09-26 16:20:57 +08:00

44 lines
645 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.

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