gdiplus: Add a stub implementation of GdiplusNotificationHook and GdiplusNotificationUnhook.

This commit is contained in:
Hans Leidekker 2008-11-24 10:21:28 +01:00 committed by Alexandre Julliard
parent fcfe436de5
commit 67a9170aca
2 changed files with 14 additions and 2 deletions

View File

@ -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.@]
*/

View File

@ -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)