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
535f32ff
Commit
535f32ff
authored
Jan 31, 1999
by
Juergen Schmied
Committed by
Alexandre Julliard
Jan 31, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub for GetUserObjectSecurity.
parent
f74fa4e6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
user32.spec
relay32/user32.spec
+1
-1
user.c
windows/user.c
+8
-0
No files found.
relay32/user32.spec
View file @
535f32ff
...
...
@@ -302,7 +302,7 @@ init MAIN_UserInit
298 stdcall GetUpdateRgn(long long long) GetUpdateRgn32
299 stdcall GetUserObjectInformationA (long long ptr long ptr) GetUserObjectInformation32A
300 stdcall GetUserObjectInformationW (long long ptr long ptr) GetUserObjectInformation32W
301 st
ub GetUserObjectSecurity
301 st
dcall GetUserObjectSecurity (long ptr ptr long ptr) GetUserObjectSecurity32
302 stdcall GetWindow(long long) GetWindow32
303 stdcall GetWindowContextHelpId(long) GetWindowContextHelpId
304 stdcall GetWindowDC(long) GetWindowDC32
...
...
windows/user.c
View file @
535f32ff
...
...
@@ -512,3 +512,11 @@ BOOL32 WINAPI GetUserObjectInformation32W( HANDLE32 hObj, int nIndex, LPVOID pvI
{
FIXME
(
win32
,
"(0x%x %i %p %ld %p),stub!
\n
"
,
hObj
,
nIndex
,
pvInfo
,
nLength
,
lpnLen
);
return
TRUE
;
}
/***********************************************************************
* GetUserObjectSecurity32 (USER32.300)
*/
BOOL32
WINAPI
GetUserObjectSecurity32
(
HANDLE32
hObj
,
SECURITY_INFORMATION
*
pSIRequested
,
PSECURITY_DESCRIPTOR
pSID
,
DWORD
nLength
,
LPDWORD
lpnLengthNeeded
)
{
FIXME
(
win32
,
"(0x%x %p %p len=%ld %p),stub!
\n
"
,
hObj
,
pSIRequested
,
pSID
,
nLength
,
lpnLengthNeeded
);
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