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
dd0a1f94
Commit
dd0a1f94
authored
Apr 06, 2004
by
Sami Aario
Committed by
Alexandre Julliard
Apr 06, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix return types of GetThreadDesktop and OpenDesktopA.
parent
2feebb45
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
9 deletions
+3
-9
misc.c
dlls/user/misc.c
+3
-9
No files found.
dlls/user/misc.c
View file @
dd0a1f94
...
...
@@ -105,9 +105,6 @@ HWINSTA WINAPI GetProcessWindowStation(void)
/******************************************************************************
* GetThreadDesktop [USER32.@] Returns handle to desktop
*
* NOTES
* Docs say the return value is HDESK
*
* PARAMS
* dwThreadId [I] Thread identifier
*
...
...
@@ -115,10 +112,10 @@ HWINSTA WINAPI GetProcessWindowStation(void)
* Success: Handle to desktop associated with specified thread
* Failure: NULL
*/
DWORD
WINAPI
GetThreadDesktop
(
DWORD
dwThreadId
)
HDESK
WINAPI
GetThreadDesktop
(
DWORD
dwThreadId
)
{
FIXME
(
"(%lx): stub
\n
"
,
dwThreadId
);
return
1
;
return
(
HDESK
)
1
;
}
...
...
@@ -186,12 +183,9 @@ BOOL WINAPI SetProcessDefaultLayout( DWORD dwDefaultLayout )
/******************************************************************************
* OpenDesktopA [USER32.@]
*
* NOTES
* Return type should be HDESK
*
* Not supported on Win9x - returns NULL and calls SetLastError.
*/
H
ANDLE
WINAPI
OpenDesktopA
(
LPCSTR
lpszDesktop
,
DWORD
dwFlags
,
H
DESK
WINAPI
OpenDesktopA
(
LPCSTR
lpszDesktop
,
DWORD
dwFlags
,
BOOL
fInherit
,
DWORD
dwDesiredAccess
)
{
FIXME
(
"(%s,%lx,%i,%lx): stub
\n
"
,
debugstr_a
(
lpszDesktop
),
dwFlags
,
...
...
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