reactos/win32ss/gdi/eng/debug.c
Pierre Schweitzer 321bcc056d Create the AHCI branch for Aman's work
svn path=/branches/GSoC_2016/AHCI/; revision=71203
2016-04-24 20:17:09 +00:00

32 lines
606 B
C

/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* PURPOSE:
* FILE: win32ss/gdi/eng/debug.c
* PROGRAMER: Jason Filby
*/
#include <win32k.h>
#define NDEBUG
#include <debug.h>
/*
* @implemented
*/
VOID
APIENTRY
EngDebugPrint(
_In_z_ PCHAR StandardPrefix,
_In_z_ PCHAR DebugMessage,
_In_ va_list ap)
{
vDbgPrintExWithPrefix(StandardPrefix,
-1,
DPFLTR_ERROR_LEVEL,
DebugMessage,
ap);
}
/* EOF */