gdi32: Add stub functions.

This commit is contained in:
Patrick Rudolph 2015-04-15 19:26:07 +02:00 committed by Alexandre Julliard
parent 760b78813d
commit d2a91a3aed
2 changed files with 21 additions and 0 deletions

View File

@ -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;
}

View File

@ -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)