2020-09-30 16:53:49 +02:00

40 lines
513 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,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