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
2f5a152e
Commit
2f5a152e
authored
Apr 10, 1999
by
Sergey Turchanov
Committed by
Alexandre Julliard
Apr 10, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stubs for CloseDesktop and CloseWindowStation.
parent
c6ba8637
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
user32.spec
relay32/user32.spec
+2
-2
user.c
windows/user.c
+11
-0
No files found.
relay32/user32.spec
View file @
2f5a152e
...
...
@@ -56,9 +56,9 @@ init MAIN_UserInit
52 stdcall ClientToScreen(long ptr) ClientToScreen
53 stdcall ClipCursor(ptr) ClipCursor
54 stdcall CloseClipboard() CloseClipboard
55 st
ub
CloseDesktop
55 st
dcall CloseDesktop(long)
CloseDesktop
56 stdcall CloseWindow(long) CloseWindow
57 st
ub CloseWindowStation
57 st
dcall CloseWindowStation(long) CloseWindowStation
58 stdcall CopyAcceleratorTableA(long ptr long) CopyAcceleratorTableA
59 stdcall CopyAcceleratorTableW(long ptr long) CopyAcceleratorTableW
60 stdcall CopyIcon(long) CopyIcon
...
...
windows/user.c
View file @
2f5a152e
...
...
@@ -500,6 +500,17 @@ HDESK WINAPI CreateDesktopW(
return
0xcafedead
;
}
BOOL
WINAPI
CloseWindowStation
(
HWINSTA
hWinSta
)
{
FIXME
(
win32
,
"(0x%08x)
\n
"
,
hWinSta
);
return
TRUE
;
}
BOOL
WINAPI
CloseDesktop
(
HDESK
hDesk
)
{
FIXME
(
win32
,
"(0x%08x)
\n
"
,
hDesk
);
return
TRUE
;
}
/***********************************************************************
* SetWindowStationUser (USER32.521)
*/
...
...
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