Commit 86f11f71 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

gdi32: Move stub object functions to objects.c.

parent 3a5b9263
......@@ -1163,23 +1163,6 @@ INT WINAPI EnumObjects( HDC hdc, INT nObjType,
/***********************************************************************
* SetObjectOwner (GDI32.@)
*/
void WINAPI SetObjectOwner( HGDIOBJ handle, HANDLE owner )
{
/* Nothing to do */
}
/***********************************************************************
* GdiInitializeLanguagePack (GDI32.@)
*/
DWORD WINAPI GdiInitializeLanguagePack( DWORD arg )
{
FIXME("stub\n");
return 0;
}
/***********************************************************************
* NtGdiFlush (win32u.@)
*/
BOOL WINAPI NtGdiFlush(void)
......@@ -1188,24 +1171,6 @@ BOOL WINAPI NtGdiFlush(void)
}
/***********************************************************************
* GdiGetBatchLimit (GDI32.@)
*/
DWORD WINAPI GdiGetBatchLimit(void)
{
return 1; /* FIXME */
}
/***********************************************************************
* GdiSetBatchLimit (GDI32.@)
*/
DWORD WINAPI GdiSetBatchLimit( DWORD limit )
{
return 1; /* FIXME */
}
/*******************************************************************
* NtGdiGetColorAdjustment (win32u.@)
*/
......
......@@ -788,3 +788,36 @@ done:
release_display_device_init_mutex( mutex );
return status;
}
/***********************************************************************
* SetObjectOwner (GDI32.@)
*/
void WINAPI SetObjectOwner( HGDIOBJ handle, HANDLE owner )
{
/* Nothing to do */
}
/***********************************************************************
* GdiInitializeLanguagePack (GDI32.@)
*/
DWORD WINAPI GdiInitializeLanguagePack( DWORD arg )
{
FIXME( "stub\n" );
return 0;
}
/***********************************************************************
* GdiGetBatchLimit (GDI32.@)
*/
DWORD WINAPI GdiGetBatchLimit(void)
{
return 1; /* FIXME */
}
/***********************************************************************
* GdiSetBatchLimit (GDI32.@)
*/
DWORD WINAPI GdiSetBatchLimit( DWORD limit )
{
return 1; /* FIXME */
}
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