Files
reactos/reactos/subsys/win32k/eng/debug.c
T
Rex Jolliff 6cc79a481e added some Eng funcs into build list
svn path=/trunk/; revision=730
1999-10-23 22:40:49 +00:00

19 lines
481 B
C

/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* PURPOSE: GDI Driver Brush Functions
* FILE: subsys/win32k/eng/debug.c
* PROGRAMER: Jason Filby
* REVISION HISTORY:
* 11/7/1999: Created
*/
#include <ddk/ntddk.h>
VOID STDCALL EngDebugPrint(PCHAR StandardPrefix, PCHAR DebugMessage, va_list ap)
{
DbgPrint(StandardPrefix);
DbgPrint(DebugMessage, ap);
DbgPrint("\n");
}