gdiplus: Return 0 from GdiplusShutdown.
This commit is contained in:
parent
9326fc13ca
commit
1eb12cb08d
|
@ -121,6 +121,14 @@ void WINAPI GdiplusShutdown(ULONG_PTR token)
|
||||||
/* FIXME: no object tracking */
|
/* FIXME: no object tracking */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* "bricksntiles" expects a return value of 0, which native coincidentally gives */
|
||||||
|
ULONG WINAPI GdiplusShutdown_wrapper(ULONG_PTR token)
|
||||||
|
{
|
||||||
|
GdiplusShutdown(token);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/*****************************************************
|
/*****************************************************
|
||||||
* GdipAlloc [GDIPLUS.@]
|
* GdipAlloc [GDIPLUS.@]
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -626,5 +626,5 @@
|
||||||
@ stdcall GdipWindingModeOutline(ptr ptr float)
|
@ stdcall GdipWindingModeOutline(ptr ptr float)
|
||||||
@ stdcall GdiplusNotificationHook(ptr)
|
@ stdcall GdiplusNotificationHook(ptr)
|
||||||
@ stdcall GdiplusNotificationUnhook(ptr)
|
@ stdcall GdiplusNotificationUnhook(ptr)
|
||||||
@ stdcall GdiplusShutdown(ptr)
|
@ stdcall GdiplusShutdown(ptr) GdiplusShutdown_wrapper
|
||||||
@ stdcall GdiplusStartup(ptr ptr ptr)
|
@ stdcall GdiplusStartup(ptr ptr ptr)
|
||||||
|
|
Loading…
Reference in New Issue