Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
91cf6d71
Commit
91cf6d71
authored
May 04, 2020
by
Brendan Shanks
Committed by
Alexandre Julliard
May 05, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Move DisplayConfig stubs together into sysparams.c.
Signed-off-by:
Brendan Shanks
<
bshanks@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6396546b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
35 deletions
+35
-35
misc.c
dlls/user32/misc.c
+0
-26
sysparams.c
dlls/user32/sysparams.c
+35
-9
No files found.
dlls/user32/misc.c
View file @
91cf6d71
...
...
@@ -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.@)
*/
void
WINAPI
RegisterSystemThread
(
DWORD
flags
,
DWORD
reserved
)
...
...
@@ -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.@]
*/
BOOL
WINAPI
RegisterPointerDeviceNotifications
(
HWND
hwnd
,
BOOL
notifyrange
)
...
...
dlls/user32/sysparams.c
View file @
91cf6d71
...
...
@@ -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.@)
*
* RETURNS
...
...
@@ -4494,3 +4485,38 @@ BOOL WINAPI PhysicalToLogicalPoint( HWND hwnd, POINT *point )
{
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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment