Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Zsolt Vadász
wine
Commits
4d563e01
Commit
4d563e01
authored
20 years ago
by
Steven Edwards
Committed by
Alexandre Julliard
20 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added stub for SwitchDesktop.
parent
1a77ea56
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/user/user32.spec
+1
-1
1 addition, 1 deletion
dlls/user/user32.spec
windows/win.c
+11
-0
11 additions, 0 deletions
windows/win.c
with
12 additions
and
1 deletion
dlls/user/user32.spec
+
1
−
1
View file @
4d563e01
...
...
@@ -572,7 +572,7 @@
@ stdcall ShowWindowAsync(long long)
@ stdcall SubtractRect(ptr ptr ptr)
@ stdcall SwapMouseButton(long)
@ st
ub
SwitchDesktop
@ st
dcall
SwitchDesktop
(long)
@ stdcall SwitchToThisWindow(long long)
# @ stub SysErrorBox
@ stdcall SystemParametersInfoA(long long ptr long)
...
...
This diff is collapsed.
Click to expand it.
windows/win.c
+
11
−
0
View file @
4d563e01
...
...
@@ -3273,3 +3273,14 @@ BOOL WINAPI GetWindowInfo( HWND hwnd, PWINDOWINFO pwi)
return
TRUE
;
}
/******************************************************************************
* SwitchDesktop (USER32.@)
*
* NOTES: Sets the current input or interactive desktop.
*/
BOOL
WINAPI
SwitchDesktop
(
HDESK
hDesktop
)
{
FIXME
(
"SwitchDesktop(hwnd %p) stub!
\n
"
,
hDesktop
);
return
TRUE
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment