Commit f95687c5 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

gdi32: Move GdiDllInitialize to objects.c.

parent 66fd792c
......@@ -685,18 +685,6 @@ BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
}
/***********************************************************************
* GdiDllInitialize
*
* Stub entry point, some games (CoD: Black Ops 3) call it directly.
*/
BOOL WINAPI GdiDllInitialize( HINSTANCE inst, DWORD reason, LPVOID reserved )
{
FIXME("stub\n");
return TRUE;
}
static const char *gdi_obj_type( unsigned type )
{
switch ( type )
......
......@@ -1059,3 +1059,14 @@ BOOL WINAPI LineDDA( INT x_start, INT y_start, INT x_end, INT y_end,
}
return TRUE;
}
/***********************************************************************
* GdiDllInitialize (GDI32.@)
*
* Stub entry point, some games (CoD: Black Ops 3) call it directly.
*/
BOOL WINAPI GdiDllInitialize( HINSTANCE inst, DWORD reason, LPVOID reserved )
{
FIXME( "stub\n" );
return TRUE;
}
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