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 ...@@ -100,6 +100,18 @@ Status WINAPI GdiplusStartup(ULONG_PTR *token, const struct GdiplusStartupInput
return Ok; 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.@] * GdiplusShutdown [GDIPLUS.@]
*/ */
......
...@@ -624,7 +624,7 @@ ...@@ -624,7 +624,7 @@
@ stub GdipWarpPath @ stub GdipWarpPath
@ stub GdipWidenPath @ stub GdipWidenPath
@ stub GdipWindingModeOutline @ stub GdipWindingModeOutline
@ stub GdiplusNotificationHook @ stdcall GdiplusNotificationHook(ptr)
@ stub GdiplusNotificationUnhook @ stdcall GdiplusNotificationUnhook(ptr)
@ stdcall GdiplusShutdown(ptr) @ stdcall GdiplusShutdown(ptr)
@ stdcall GdiplusStartup(ptr ptr 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