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

oldstable
Francois Gouget 2011-03-16 08:26:52 +01:00 committed by Alexandre Julliard
parent 769dcd8447
commit ca988fa401
1 changed files with 8 additions and 7 deletions

View File

@ -116,16 +116,17 @@ void WINAPI GdiplusNotificationUnhook(ULONG_PTR token)
/*****************************************************
* 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)
{
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;
}