Commit c3918f2a authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

shcore: Add stub for RegisterScaleChangeNotifications.

parent 68ab4c48
...@@ -2532,6 +2532,18 @@ HRESULT WINAPI RegisterScaleChangeEvent(HANDLE handle, DWORD_PTR *cookie) ...@@ -2532,6 +2532,18 @@ HRESULT WINAPI RegisterScaleChangeEvent(HANDLE handle, DWORD_PTR *cookie)
} }
/************************************************************************* /*************************************************************************
* RegisterScaleChangeNotifications [SHCORE.@]
*/
HRESULT WINAPI RegisterScaleChangeNotifications(DISPLAY_DEVICE_TYPE display_device, HWND hwnd, UINT msg, DWORD *cookie)
{
FIXME("(%d, %p, %u, %p) stub\n", display_device, hwnd, msg, cookie);
if (cookie) *cookie = 0;
return E_NOTIMPL;
}
/*************************************************************************
* CreateRandomAccessStreamOverStream [SHCORE.@] * CreateRandomAccessStreamOverStream [SHCORE.@]
*/ */
HRESULT WINAPI CreateRandomAccessStreamOverStream(IStream *stream, BSOS_OPTIONS options, REFIID riid, void **ppv) HRESULT WINAPI CreateRandomAccessStreamOverStream(IStream *stream, BSOS_OPTIONS options, REFIID riid, void **ppv)
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
# @ stub RecordFeatureError # @ stub RecordFeatureError
# @ stub RecordFeatureUsage # @ stub RecordFeatureUsage
@ stdcall RegisterScaleChangeEvent(ptr ptr) @ stdcall RegisterScaleChangeEvent(ptr ptr)
@ stub RegisterScaleChangeNotifications @ stdcall RegisterScaleChangeNotifications(long ptr long ptr)
@ stub RevokeScaleChangeNotifications @ stub RevokeScaleChangeNotifications
@ stdcall SHAnsiToAnsi(str ptr long) @ stdcall SHAnsiToAnsi(str ptr long)
@ stdcall SHAnsiToUnicode(str ptr long) @ stdcall SHAnsiToUnicode(str ptr long)
......
...@@ -46,6 +46,7 @@ HRESULT WINAPI GetDpiForMonitor(HMONITOR,MONITOR_DPI_TYPE,UINT*,UINT*); ...@@ -46,6 +46,7 @@ HRESULT WINAPI GetDpiForMonitor(HMONITOR,MONITOR_DPI_TYPE,UINT*,UINT*);
HRESULT WINAPI GetProcessDpiAwareness(HANDLE,PROCESS_DPI_AWARENESS*); HRESULT WINAPI GetProcessDpiAwareness(HANDLE,PROCESS_DPI_AWARENESS*);
DEVICE_SCALE_FACTOR WINAPI GetScaleFactorForDevice(DISPLAY_DEVICE_TYPE device_type); DEVICE_SCALE_FACTOR WINAPI GetScaleFactorForDevice(DISPLAY_DEVICE_TYPE device_type);
HRESULT WINAPI GetScaleFactorForMonitor(HMONITOR,DEVICE_SCALE_FACTOR*); HRESULT WINAPI GetScaleFactorForMonitor(HMONITOR,DEVICE_SCALE_FACTOR*);
HRESULT WINAPI RegisterScaleChangeNotifications(DISPLAY_DEVICE_TYPE,HWND,UINT,DWORD*);
HRESULT WINAPI SetProcessDpiAwareness(PROCESS_DPI_AWARENESS); HRESULT WINAPI SetProcessDpiAwareness(PROCESS_DPI_AWARENESS);
#endif /* __WINE_SHELLSCALINGAPI_H */ #endif /* __WINE_SHELLSCALINGAPI_H */
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