windows-nt/Source/XPSP1/NT/base/ntsetup/pnpsif/debug.c
2020-09-26 16:20:57 +08:00

62 lines
795 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) 1998-2000 Microsoft Corporation
Module Name:
debug.c
Abstract:
Debug infrastructure for this component.
(currently inactive)
Author:
Jim Cavalaris (jamesca) 07-Mar-2000
Environment:
User-mode only.
Revision History:
07-March-2000 jamesca
Creation and initial implementation.
--*/
//
// includes
//
#include "precomp.h"
#include "debug.h"
//
// debug infrastructure
// (currently removed)
//
#if 0 //#if DBG // DBG
VOID
DebugMessage(LPTSTR format, ... )
{
va_list args;
va_start(args, format);
_vtprintf(format, args);
}
// flags currently defined for use by debug.h:
// DBGF_ERRORS, DBGF_WARNINGS, DBGF_REGISTRY, DBGF_INFO
DWORD g_DebugFlag = DBGF_WARNINGS | DBGF_ERRORS | DBGF_INFO;
#endif // DBG