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
8090784a
Commit
8090784a
authored
Nov 24, 1998
by
Juergen Schmied
Committed by
Alexandre Julliard
Nov 24, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New stubs GetUserObjectInformationA|W.
parent
7f4d1f4e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
3 deletions
+17
-3
user32.spec
relay32/user32.spec
+2
-2
user.c
windows/user.c
+15
-1
No files found.
relay32/user32.spec
View file @
8090784a
...
...
@@ -300,8 +300,8 @@ init MAIN_UserInit
296 stdcall GetTopWindow(long) GetTopWindow32
297 stdcall GetUpdateRect(long ptr long) GetUpdateRect32
298 stdcall GetUpdateRgn(long long long) GetUpdateRgn32
299 st
ub GetUserObjectInformation
A
300 st
ub GetUserObjectInformation
W
299 st
dcall GetUserObjectInformationA (long long ptr long ptr) GetUserObjectInformation32
A
300 st
dcall GetUserObjectInformationW (long long ptr long ptr) GetUserObjectInformation32
W
301 stub GetUserObjectSecurity
302 stdcall GetWindow(long long) GetWindow32
303 stdcall GetWindowContextHelpId(long) GetWindowContextHelpId
...
...
windows/user.c
View file @
8090784a
...
...
@@ -488,7 +488,7 @@ DWORD WINAPI SetWindowStationUser(DWORD x1,DWORD x2) {
* SetLogonNotifyWindow (USER32.486)
*/
DWORD
WINAPI
SetLogonNotifyWindow
(
HWINSTA32
hwinsta
,
HWND32
hwnd
)
{
FIXME
(
win32
,
"(0x%
l
x,%ld),stub!
\n
"
,
hwinsta
,
hwnd
);
FIXME
(
win32
,
"(0x%x,%ld),stub!
\n
"
,
hwinsta
,
hwnd
);
return
1
;
}
...
...
@@ -499,3 +499,17 @@ VOID WINAPI LoadLocalFonts(VOID) {
/* are loaded. */
return
;
}
/***********************************************************************
* GetUserObjectInformation32A (USER32.299)
*/
BOOL32
WINAPI
GetUserObjectInformation32A
(
HANDLE32
hObj
,
int
nIndex
,
LPVOID
pvInfo
,
DWORD
nLength
,
LPDWORD
lpnLen
)
{
FIXME
(
win32
,
"(0x%x %i %p %ld %p),stub!
\n
"
,
hObj
,
nIndex
,
pvInfo
,
nLength
,
lpnLen
);
return
TRUE
;
}
/***********************************************************************
* GetUserObjectInformation32W (USER32.300)
*/
BOOL32
WINAPI
GetUserObjectInformation32W
(
HANDLE32
hObj
,
int
nIndex
,
LPVOID
pvInfo
,
DWORD
nLength
,
LPDWORD
lpnLen
)
{
FIXME
(
win32
,
"(0x%x %i %p %ld %p),stub!
\n
"
,
hObj
,
nIndex
,
pvInfo
,
nLength
,
lpnLen
);
return
TRUE
;
}
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