Commit 67a9170a authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

gdiplus: Add a stub implementation of GdiplusNotificationHook and GdiplusNotificationUnhook.

parent fcfe436d
......@@ -100,6 +100,18 @@ Status WINAPI GdiplusStartup(ULONG_PTR *token, const struct GdiplusStartupInput
return Ok;
}
GpStatus WINAPI GdiplusNotificationHook(ULONG_PTR *token)
{
FIXME("%p\n", token);
return NotificationHook(token);
}
void WINAPI GdiplusNotificationUnhook(ULONG_PTR token)
{
FIXME("%ld\n", token);
return NotificationUnhook(token);
}
/*****************************************************
* GdiplusShutdown [GDIPLUS.@]
*/
......
......@@ -624,7 +624,7 @@
@ stub GdipWarpPath
@ stub GdipWidenPath
@ stub GdipWindingModeOutline
@ stub GdiplusNotificationHook
@ stub GdiplusNotificationUnhook
@ stdcall GdiplusNotificationHook(ptr)
@ stdcall GdiplusNotificationUnhook(ptr)
@ stdcall GdiplusShutdown(ptr)
@ stdcall GdiplusStartup(ptr ptr ptr)
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