Leaked source code of windows server 2003
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.
|
|
/*******************************************************************/ /* 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_
|