reactos/win32ss/gdi/gdi32_vista/dc.c
2024-10-19 13:45:59 -07:00

26 lines
693 B
C

#define WIN32_NO_STATUS
#define _INC_WINDOWS
#define COM_NO_WINDOWS_H
#define NTOS_MODE_USER
#include <stdarg.h>
#include <windef.h>
#include <winbase.h>
#include <ndk/rtlfuncs.h>
#include <wingdi.h>
#include <winddi.h>
#include <prntfont.h>
#include <ntgdityp.h>
#include <ntgdi.h>
/***********************************************************************
* D3DKMTCreateDCFromMemory (GDI32.@)
*/
NTSTATUS APIENTRY D3DKMTCreateDCFromMemory(_Inout_ D3DKMT_CREATEDCFROMMEMORY* desc)
{
return NtGdiDdDDICreateDCFromMemory( desc );
}
NTSTATUS APIENTRY D3DKMTDestroyDCFromMemory(_In_ CONST D3DKMT_DESTROYDCFROMMEMORY* desc)
{
return NtGdiDdDDIDestroyDCFromMemory( desc );
}