gdiplus: Add a stub implementation of GdiplusNotificationHook and GdiplusNotificationUnhook.
This commit is contained in:
parent
fcfe436de5
commit
67a9170aca
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue