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.
40 lines
513 B
40 lines
513 B
|
|
/*++
|
|
|
|
Copyright (c) 1992,1993 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
debug.h
|
|
|
|
Abstract:
|
|
|
|
This module defines some simple macros for determining if we are using
|
|
the checked or free version of a component.
|
|
|
|
Author:
|
|
|
|
James Bratsanos (v-jimbr) 8-Dec-1992
|
|
|
|
|
|
--*/
|
|
|
|
VOID DbgPsPrint(PTCHAR, ...);
|
|
|
|
|
|
|
|
#if DBG==1 && DEVL==1
|
|
#define MYPSDEBUG
|
|
#else
|
|
#undef MYPSDEBUG
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef MYPSDEBUG
|
|
#define DBGOUT(parm) ( printf parm )
|
|
#else
|
|
#define DBGOUT(parm)
|
|
#endif
|
|
|
|
|