Leaked source code of windows server 2003
 
 
 
 
 
 

23 lines
373 B

#include <stddef.h>
#include <stdlib.h>
#include <stdarg.h>
#include <windef.h>
#include <winbase.h>
#include <wingdi.h>
#include <winddi.h>
//
// Functions for outputting debug messages
//
VOID
DbgPrint(IN LPCSTR pstrFormat, ...)
{
va_list ap;
va_start(ap, pstrFormat);
EngDebugPrint("", (PCHAR) pstrFormat, ap);
va_end(ap);
}