[PATCH] shell32: add stub for Shell_NotifyIconGetRect
24 Nov
2017
24 Nov
'17
2:21 p.m.
This is part of bug https://bugs.winehq.org/attachment.cgi?id=59745
27 Nov
27 Nov
7:53 a.m.
+/************************************************************************* + * Shell_NotifyIconGetRect [SHELL32.@] + */ +HRESULT WINAPI Shell_NotifyIconGetRect(const NOTIFYICONIDENTIFIER* identifier, RECT* icon_location) +{ + FIXME("stub (%p) (%p)\n", identifier, icon_location); + SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + return E_NOTIMPL; +} Usually it's either HRESULT or last error, not both.
+#if NTDDI_VERSION >= 0x06010000 +HRESULT Shell_NotifyIconGetRect(const NOTIFYICONIDENTIFIER* identifier, RECT* iconLocation); +#endif Prototype is wrong. Also, why do you need version check?
3027
Age (days ago)
3030
Last active (days ago)
1 comments
2 participants
participants (2)
-
Louis Lenders -
Nikolay Sivov