Commit 0e257cb1 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

gdi32: Move more DC stubs to gdidc.c.

parent 5a780ffd
......@@ -29,7 +29,6 @@
#include "winbase.h"
#include "wingdi.h"
#include "winreg.h"
#include "ddrawgdi.h"
#include "wine/winbase16.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.@)
*/
......
......@@ -22,6 +22,7 @@
#include "gdi_private.h"
#include "winternl.h"
#include "ddrawgdi.h"
#include "wine/debug.h"
......@@ -1843,3 +1844,34 @@ BOOL WINAPI GdiIsPlayMetafileDC( HDC hdc )
FIXME( "%p\n", hdc );
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;
}
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