gdi32: Move more DC stubs to gdidc.c.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
5a780ffd63
commit
0e257cb1fb
|
@ -29,7 +29,6 @@
|
||||||
#include "winbase.h"
|
#include "winbase.h"
|
||||||
#include "wingdi.h"
|
#include "wingdi.h"
|
||||||
#include "winreg.h"
|
#include "winreg.h"
|
||||||
#include "ddrawgdi.h"
|
|
||||||
#include "wine/winbase16.h"
|
#include "wine/winbase16.h"
|
||||||
#include "winuser.h"
|
#include "winuser.h"
|
||||||
|
|
||||||
|
@ -1147,42 +1146,6 @@ INT WINAPI NtGdiExtEscape( HDC hdc, WCHAR *driver, int driver_id, INT escape, IN
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************
|
|
||||||
* DrawEscape [GDI32.@]
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
INT WINAPI DrawEscape(HDC hdc, INT nEscape, INT cbInput, LPCSTR lpszInData)
|
|
||||||
{
|
|
||||||
FIXME("DrawEscape, stub\n");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*******************************************************************
|
|
||||||
* NamedEscape [GDI32.@]
|
|
||||||
*/
|
|
||||||
INT WINAPI NamedEscape( HDC hdc, LPCWSTR pDriver, INT nEscape, INT cbInput, LPCSTR lpszInData,
|
|
||||||
INT cbOutput, LPSTR lpszOutData )
|
|
||||||
{
|
|
||||||
FIXME("(%p, %s, %d, %d, %p, %d, %p)\n",
|
|
||||||
hdc, wine_dbgstr_w(pDriver), nEscape, cbInput, lpszInData, cbOutput,
|
|
||||||
lpszOutData);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*******************************************************************
|
|
||||||
* DdQueryDisplaySettingsUniqueness [GDI32.@]
|
|
||||||
* GdiEntry13 [GDI32.@]
|
|
||||||
*/
|
|
||||||
ULONG WINAPI DdQueryDisplaySettingsUniqueness(VOID)
|
|
||||||
{
|
|
||||||
static int warn_once;
|
|
||||||
|
|
||||||
if (!warn_once++)
|
|
||||||
FIXME("stub\n");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
* NtGdiDdDDIOpenAdapterFromHdc (win32u.@)
|
* NtGdiDdDDIOpenAdapterFromHdc (win32u.@)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
|
|
||||||
#include "gdi_private.h"
|
#include "gdi_private.h"
|
||||||
#include "winternl.h"
|
#include "winternl.h"
|
||||||
|
#include "ddrawgdi.h"
|
||||||
|
|
||||||
#include "wine/debug.h"
|
#include "wine/debug.h"
|
||||||
|
|
||||||
|
@ -1843,3 +1844,34 @@ BOOL WINAPI GdiIsPlayMetafileDC( HDC hdc )
|
||||||
FIXME( "%p\n", hdc );
|
FIXME( "%p\n", hdc );
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*******************************************************************
|
||||||
|
* DrawEscape (GDI32.@)
|
||||||
|
*/
|
||||||
|
INT WINAPI DrawEscape( HDC hdc, INT escape, INT input_size, const char *input )
|
||||||
|
{
|
||||||
|
FIXME( "stub\n" );
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*******************************************************************
|
||||||
|
* NamedEscape (GDI32.@)
|
||||||
|
*/
|
||||||
|
INT WINAPI NamedEscape( HDC hdc, const WCHAR *driver, INT escape, INT input_size,
|
||||||
|
const char *input, INT output_size, char *output )
|
||||||
|
{
|
||||||
|
FIXME( "(%p %s %d, %d %p %d %p)\n", hdc, wine_dbgstr_w(driver), escape, input_size,
|
||||||
|
input, output_size, output );
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*******************************************************************
|
||||||
|
* DdQueryDisplaySettingsUniqueness (GDI32.@)
|
||||||
|
* GdiEntry13
|
||||||
|
*/
|
||||||
|
ULONG WINAPI DdQueryDisplaySettingsUniqueness(void)
|
||||||
|
{
|
||||||
|
static int warn_once;
|
||||||
|
if (!warn_once++) FIXME( "stub\n" );
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue