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
ae3716d6
Commit
ae3716d6
authored
Jul 15, 2000
by
Peter Ganten
Committed by
Alexandre Julliard
Jul 15, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stubs for CreateDesktopA and EnumDesktopWindows.
parent
f8b07253
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
2 deletions
+25
-2
user32.spec
dlls/user/user32.spec
+2
-2
user.c
windows/user.c
+23
-0
No files found.
dlls/user/user32.spec
View file @
ae3716d6
...
...
@@ -70,7 +70,7 @@ rsrc user32
65 stdcall CreateAcceleratorTableW(ptr long) CreateAcceleratorTableW
66 stdcall CreateCaret(long long long long) CreateCaret
67 stdcall CreateCursor(long long long long long ptr ptr) CreateCursor
68 st
ub
CreateDesktopA
68 st
dcall CreateDesktopA(str str ptr long long ptr)
CreateDesktopA
69 stdcall CreateDesktopW(wstr wstr ptr long long ptr) CreateDesktopW
70 stdcall CreateDialogIndirectParamA(long ptr long ptr long) CreateDialogIndirectParamA
71 stdcall CreateDialogIndirectParamAorW (long ptr long ptr long) CreateDialogIndirectParamAorW
...
...
@@ -594,7 +594,7 @@ rsrc user32
#late additions
589 stdcall ChangeDisplaySettingsA(ptr long) ChangeDisplaySettingsA
590 stub ChangeDisplaySettingsW
591 st
ub
EnumDesktopWindows
591 st
dcall EnumDesktopWindows(long ptr ptr)
EnumDesktopWindows
592 stdcall EnumDisplaySettingsA(str long ptr) EnumDisplaySettingsA
593 stdcall EnumDisplaySettingsW(wstr long ptr ) EnumDisplaySettingsW
594 stdcall GetWindowRgn(long long) GetWindowRgn
...
...
windows/user.c
View file @
ae3716d6
...
...
@@ -590,6 +590,20 @@ BOOL WINAPI SetUserObjectSecurity(
}
/***********************************************************************
* CreateDesktopA (USER32.68)
*/
HDESK
WINAPI
CreateDesktopA
(
LPSTR
lpszDesktop
,
LPSTR
lpszDevice
,
LPDEVMODEA
pDevmode
,
DWORD
dwFlags
,
DWORD
dwDesiredAccess
,
LPSECURITY_ATTRIBUTES
lpsa
)
{
FIXME_
(
win32
)(
"(%s,%s,%p,0x%08lx,0x%08lx,%p),stub!
\n
"
,
lpszDesktop
,
lpszDevice
,
pDevmode
,
dwFlags
,
dwDesiredAccess
,
lpsa
);
return
0xcafedead
;
}
/***********************************************************************
* CreateDesktopW (USER32.69)
*/
HDESK
WINAPI
CreateDesktopW
(
...
...
@@ -604,6 +618,15 @@ HDESK WINAPI CreateDesktopW(
}
/***********************************************************************
* EnumDesktopWindows (USER32.591)
*/
BOOL
WINAPI
EnumDesktopWindows
(
HDESK
hDesktop
,
WNDENUMPROC
lpfn
,
LPARAM
lParam
)
{
FIXME_
(
win32
)(
"(0x%08x, %p, 0x%08lx), stub!
\n
"
,
hDesktop
,
lpfn
,
lParam
);
return
TRUE
;
}
/***********************************************************************
* CloseWindowStation
*/
BOOL
WINAPI
CloseWindowStation
(
HWINSTA
hWinSta
)
...
...
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