Commit d2a91a3a authored by Patrick Rudolph's avatar Patrick Rudolph Committed by Alexandre Julliard

gdi32: Add stub functions.

parent 760b7881
......@@ -30,6 +30,7 @@
#include "winbase.h"
#include "ddrawgdi.h"
#include "wine/winbase16.h"
#include "winternl.h"
#include "gdi_private.h"
#include "wine/unicode.h"
......@@ -1153,3 +1154,21 @@ ULONG WINAPI DdQueryDisplaySettingsUniqueness(VOID)
FIXME("stub\n");
return 0;
}
/******************************************************************************
* D3DKMTOpenAdapterFromHdc [GDI32.@]
*/
NTSTATUS WINAPI D3DKMTOpenAdapterFromHdc( void *pData )
{
FIXME("(%p): stub\n", pData);
return STATUS_NO_MEMORY;
}
/******************************************************************************
* D3DKMTEscape [GDI32.@]
*/
NTSTATUS WINAPI D3DKMTEscape( const void *pData )
{
FIXME("(%p): stub\n", pData);
return STATUS_NO_MEMORY;
}
......@@ -80,6 +80,8 @@
@ stdcall CreateScalableFontResourceA(long str str str)
@ stdcall CreateScalableFontResourceW(long wstr wstr wstr)
@ stdcall CreateSolidBrush(long)
@ stdcall D3DKMTEscape(ptr)
@ stdcall D3DKMTOpenAdapterFromHdc(ptr)
@ stdcall DPtoLP(long ptr long)
@ stdcall DeleteColorSpace(long)
@ stdcall DeleteDC(long)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment