Commit ca988fa4 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

gdiplus: Remove GdiplusShutdown() as it is redudant with GdiplusShutdown_wrapper().

parent 769dcd84
...@@ -116,16 +116,17 @@ void WINAPI GdiplusNotificationUnhook(ULONG_PTR token) ...@@ -116,16 +116,17 @@ void WINAPI GdiplusNotificationUnhook(ULONG_PTR token)
/***************************************************** /*****************************************************
* GdiplusShutdown [GDIPLUS.@] * GdiplusShutdown [GDIPLUS.@]
*/ */
void WINAPI GdiplusShutdown(ULONG_PTR token)
{
/* FIXME: no object tracking */
}
/* "bricksntiles" expects a return value of 0, which native coincidentally gives */
ULONG WINAPI GdiplusShutdown_wrapper(ULONG_PTR token) ULONG WINAPI GdiplusShutdown_wrapper(ULONG_PTR token)
{ {
GdiplusShutdown(token); /* Notice the slightly different prototype from the official
* signature which forces us to use the the _wrapper suffix.
*/
/* FIXME: no object tracking */
/* "bricksntiles" expects a return value of 0, which native
* coincidentally gives.
*/
return 0; 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