2021-11-13 16:43:41 +00:00
|
|
|
#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.@)
|
|
|
|
*/
|
2024-10-19 19:27:23 +00:00
|
|
|
NTSTATUS APIENTRY D3DKMTCreateDCFromMemory(_Inout_ D3DKMT_CREATEDCFROMMEMORY* desc)
|
2021-11-13 16:43:41 +00:00
|
|
|
{
|
|
|
|
return NtGdiDdDDICreateDCFromMemory( desc );
|
|
|
|
}
|
|
|
|
|
2024-10-19 19:27:23 +00:00
|
|
|
NTSTATUS APIENTRY D3DKMTDestroyDCFromMemory(_In_ CONST D3DKMT_DESTROYDCFROMMEMORY* desc)
|
2021-11-13 16:43:41 +00:00
|
|
|
{
|
|
|
|
return NtGdiDdDDIDestroyDCFromMemory( desc );
|
|
|
|
}
|