reactos/win32ss/gdi/eng/debug.c
Hermès Bélusca-Maïto 65ce146169 Create a branch for working on csrss and co.
svn path=/branches/ros-csrss/; revision=57561
2012-10-14 13:04:31 +00:00

30 lines
591 B
C

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