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.
 
 
 
 
 
 

47 lines
615 B

/*++
Copyright (c) 1998 Microsoft Corporation
Module Name:
debug.cpp
Abstract:
SIS Groveler debug print file
Authors:
John Douceur, 1998
Cedric Krumbein, 1998
Environment:
User Mode
Revision History:
--*/
#include "all.hxx"
#if DBG
VOID __cdecl PrintDebugMsg(
TCHAR *format,
...)
{
TCHAR debugStr[1024];
va_list ap;
HRESULT r;
va_start(ap, format);
r = StringCbVPrintf(debugStr, sizeof(debugStr), format, ap);
ASSERT(r == S_OK);
OutputDebugString(debugStr);
va_end(ap);
}
#endif // DBG