xref: /reactos/win32ss/gdi/eng/debug.c (revision 7e22dc05)
1 /*
2  * COPYRIGHT:         See COPYING in the top level directory
3  * PROJECT:           ReactOS kernel
4  * PURPOSE:
5  * FILE:              win32ss/gdi/eng/debug.c
6  * PROGRAMER:         Jason Filby
7  */
8 
9 #include <win32k.h>
10 
11 #define NDEBUG
12 #include <debug.h>
13 
14 /*
15  * @implemented
16  */
17 VOID
18 APIENTRY
19 EngDebugPrint(
20     _In_z_ PCHAR StandardPrefix,
21     _In_z_ PCHAR DebugMessage,
22     _In_ va_list ap)
23 {
24     vDbgPrintExWithPrefix(StandardPrefix,
25                           -1,
26                           DPFLTR_ERROR_LEVEL,
27                           DebugMessage,
28                           ap);
29 }
30 
31 /* EOF */
32