mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
26 lines
674 B
C
26 lines
674 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.@)
|
|
*/
|
|
DWORD WINAPI D3DKMTCreateDCFromMemory( D3DKMT_CREATEDCFROMMEMORY *desc )
|
|
{
|
|
return NtGdiDdDDICreateDCFromMemory( desc );
|
|
}
|
|
|
|
DWORD WINAPI D3DKMTDestroyDCFromMemory( const D3DKMT_DESTROYDCFROMMEMORY *desc )
|
|
{
|
|
return NtGdiDdDDIDestroyDCFromMemory( desc );
|
|
}
|