Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
8e26b583
Commit
8e26b583
authored
Oct 23, 1998
by
Juergen Schmied
Committed by
Alexandre Julliard
Oct 23, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New stub RegisterTaskList.
New function EnumDisplaySettings32W().
parent
c595083f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
2 deletions
+23
-2
user32.spec
relay32/user32.spec
+2
-2
ordinals.c
win32/ordinals.c
+8
-0
user.c
windows/user.c
+13
-0
No files found.
relay32/user32.spec
View file @
8e26b583
...
...
@@ -436,7 +436,7 @@ type win32
433 stdcall RegisterHotKey(long long long long) RegisterHotKey
434 stub RegisterLogonProcess
435 stub RegisterSystemThread
436 st
ub RegisterTasklist
436 st
dcall RegisterTasklist (long) RegisterTaskList32
437 stdcall RegisterWindowMessageA(ptr) RegisterWindowMessage32A
438 stdcall RegisterWindowMessageW(ptr) RegisterWindowMessage32W
439 stdcall ReleaseCapture() ReleaseCapture
...
...
@@ -594,7 +594,7 @@ type win32
590 stub ChangeDisplaySettingsW
591 stub EnumDesktopWindows
592 stdcall EnumDisplaySettingsA(str long ptr) EnumDisplaySettings32A
593 st
ub EnumDisplaySettings
W
593 st
dcall EnumDisplaySettingsW(wstr long ptr ) EnumDisplaySettings32
W
594 stdcall GetWindowRgn(long long) GetWindowRgn32
595 stub MapVirtualKeyExW
596 stub RegisterServicesProcess
...
...
win32/ordinals.c
View file @
8e26b583
...
...
@@ -220,3 +220,11 @@ HRESULT WINAPI DeregisterShellHookWindow ( DWORD u )
return
0
;
}
/***********************************************************************
* RegisterTaskList32 [USER23.436]
*/
DWORD
WINAPI
RegisterTaskList32
(
DWORD
x
)
{
FIXME
(
win
,
"0x%08lx
\n
"
,
x
);
return
TRUE
;
}
windows/user.c
View file @
8e26b583
...
...
@@ -345,6 +345,19 @@ BOOL32 WINAPI EnumDisplaySettings32A(LPCSTR name,DWORD n,LPDEVMODE32A devmode) {
return
FALSE
;
}
/***********************************************************************
* EnumDisplaySettingsW (USER32.593)
*/
BOOL32
WINAPI
EnumDisplaySettings32W
(
LPCWSTR
name
,
DWORD
n
,
LPDEVMODE32W
devmode
)
{
TRACE
(
system
,
"(%s,%ld,%p)
\n
"
,
debugstr_w
(
name
),
n
,
devmode
);
if
(
n
==
0
)
{
devmode
->
dmBitsPerPel
=
DefaultDepthOfScreen
(
screen
);
devmode
->
dmPelsHeight
=
screenHeight
;
devmode
->
dmPelsWidth
=
screenWidth
;
return
TRUE
;
}
return
FALSE
;
}
/***********************************************************************
* SetEventHook (USER.321)
...
...
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