2025-04-27 07:49:33 -04:00

30 lines
439 B
C

/*++
Copyright (c) 1997-1999 Microsoft Corporation
--*/
#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);
}