Commit 91cf6d71 authored by Brendan Shanks's avatar Brendan Shanks Committed by Alexandre Julliard

user32: Move DisplayConfig stubs together into sysparams.c.

parent 6396546b
...@@ -241,17 +241,6 @@ DWORD WINAPI SetLogonNotifyWindow(HWINSTA hwinsta,HWND hwnd) ...@@ -241,17 +241,6 @@ DWORD WINAPI SetLogonNotifyWindow(HWINSTA hwinsta,HWND hwnd)
} }
/*********************************************************************** /***********************************************************************
* QueryDisplayConfig (USER32.@)
*/
LONG WINAPI QueryDisplayConfig(UINT32 flags, UINT32 *numpathelements, DISPLAYCONFIG_PATH_INFO *pathinfo,
UINT32 *numinfoelements, DISPLAYCONFIG_MODE_INFO *modeinfo,
DISPLAYCONFIG_TOPOLOGY_ID *topologyid)
{
FIXME("(%08x %p %p %p %p %p)\n", flags, numpathelements, pathinfo, numinfoelements, modeinfo, topologyid);
return ERROR_CALL_NOT_IMPLEMENTED;
}
/***********************************************************************
* RegisterSystemThread (USER32.@) * RegisterSystemThread (USER32.@)
*/ */
void WINAPI RegisterSystemThread(DWORD flags, DWORD reserved) void WINAPI RegisterSystemThread(DWORD flags, DWORD reserved)
...@@ -546,21 +535,6 @@ BOOL WINAPI IsWindowRedirectedForPrint( HWND hwnd ) ...@@ -546,21 +535,6 @@ BOOL WINAPI IsWindowRedirectedForPrint( HWND hwnd )
} }
/********************************************************************** /**********************************************************************
* GetDisplayConfigBufferSizes [USER32.@]
*/
LONG WINAPI GetDisplayConfigBufferSizes(UINT32 flags, UINT32 *num_path_info, UINT32 *num_mode_info)
{
FIXME("(0x%x %p %p): stub\n", flags, num_path_info, num_mode_info);
if (!num_path_info || !num_mode_info)
return ERROR_INVALID_PARAMETER;
*num_path_info = 0;
*num_mode_info = 0;
return ERROR_NOT_SUPPORTED;
}
/**********************************************************************
* RegisterPointerDeviceNotifications [USER32.@] * RegisterPointerDeviceNotifications [USER32.@]
*/ */
BOOL WINAPI RegisterPointerDeviceNotifications(HWND hwnd, BOOL notifyrange) BOOL WINAPI RegisterPointerDeviceNotifications(HWND hwnd, BOOL notifyrange)
......
...@@ -3346,15 +3346,6 @@ LONG WINAPI ChangeDisplaySettingsExW( LPCWSTR devname, LPDEVMODEW devmode, HWND ...@@ -3346,15 +3346,6 @@ LONG WINAPI ChangeDisplaySettingsExW( LPCWSTR devname, LPDEVMODEW devmode, HWND
/*********************************************************************** /***********************************************************************
* DisplayConfigGetDeviceInfo (USER32.@)
*/
LONG WINAPI DisplayConfigGetDeviceInfo(DISPLAYCONFIG_DEVICE_INFO_HEADER *packet)
{
FIXME("stub: %p\n", packet);
return ERROR_NOT_SUPPORTED;
}
/***********************************************************************
* EnumDisplaySettingsW (USER32.@) * EnumDisplaySettingsW (USER32.@)
* *
* RETURNS * RETURNS
...@@ -4494,3 +4485,38 @@ BOOL WINAPI PhysicalToLogicalPoint( HWND hwnd, POINT *point ) ...@@ -4494,3 +4485,38 @@ BOOL WINAPI PhysicalToLogicalPoint( HWND hwnd, POINT *point )
{ {
return TRUE; return TRUE;
} }
/**********************************************************************
* GetDisplayConfigBufferSizes (USER32.@)
*/
LONG WINAPI GetDisplayConfigBufferSizes(UINT32 flags, UINT32 *num_path_info, UINT32 *num_mode_info)
{
FIXME("(0x%x %p %p): stub\n", flags, num_path_info, num_mode_info);
if (!num_path_info || !num_mode_info)
return ERROR_INVALID_PARAMETER;
*num_path_info = 0;
*num_mode_info = 0;
return ERROR_NOT_SUPPORTED;
}
/***********************************************************************
* QueryDisplayConfig (USER32.@)
*/
LONG WINAPI QueryDisplayConfig(UINT32 flags, UINT32 *numpathelements, DISPLAYCONFIG_PATH_INFO *pathinfo,
UINT32 *numinfoelements, DISPLAYCONFIG_MODE_INFO *modeinfo,
DISPLAYCONFIG_TOPOLOGY_ID *topologyid)
{
FIXME("(%08x %p %p %p %p %p)\n", flags, numpathelements, pathinfo, numinfoelements, modeinfo, topologyid);
return ERROR_CALL_NOT_IMPLEMENTED;
}
/***********************************************************************
* DisplayConfigGetDeviceInfo (USER32.@)
*/
LONG WINAPI DisplayConfigGetDeviceInfo(DISPLAYCONFIG_DEVICE_INFO_HEADER *packet)
{
FIXME("stub: %p\n", packet);
return ERROR_NOT_SUPPORTED;
}
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