Commit aaf05c10 authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

user32: Add stub for SetDisplayConfig().

parent c181a0ad
......@@ -4794,3 +4794,15 @@ LONG WINAPI DisplayConfigGetDeviceInfo(DISPLAYCONFIG_DEVICE_INFO_HEADER *packet)
return ERROR_INVALID_PARAMETER;
}
}
/***********************************************************************
* SetDisplayConfig (USER32.@)
*/
LONG WINAPI SetDisplayConfig(UINT32 path_info_count, DISPLAYCONFIG_PATH_INFO *path_info, UINT32 mode_info_count,
DISPLAYCONFIG_MODE_INFO *mode_info, UINT32 flags)
{
FIXME("path_info_count %u, path_info %p, mode_info_count %u, mode_info %p, flags %#x stub.\n",
path_info_count, path_info, mode_info_count, mode_info, flags);
return ERROR_SUCCESS;
}
......@@ -663,6 +663,7 @@
@ stdcall SetDeskWallPaper(str)
# @ stub SetDeskWallpaper
# @ stub SetDesktopBitmap
@ stdcall SetDisplayConfig(long ptr long ptr long)
@ stdcall SetDlgItemInt(long long long long)
@ stdcall SetDlgItemTextA(long long str)
@ stdcall SetDlgItemTextW(long long wstr)
......
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