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
ee8411f4
Commit
ee8411f4
authored
Dec 19, 2002
by
Chris Morgan
Committed by
Alexandre Julliard
Dec 19, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub for GetSecurityInfoExW().
parent
afba1593
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-0
security.c
dlls/advapi32/security.c
+15
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
ee8411f4
...
...
@@ -110,6 +110,7 @@
@ stdcall GetSecurityDescriptorOwner(ptr ptr ptr) GetSecurityDescriptorOwner
@ stdcall GetSecurityDescriptorSacl (ptr ptr ptr ptr) GetSecurityDescriptorSacl
@ stub GetSecurityInfo #(long long long ptr ptr ptr ptr ptr) GetSecurityInfo
@ stdcall GetSecurityInfoExW (long long long wstr wstr ptr ptr wstr wstr) GetSecurityInfoExW
@ stub GetServiceDisplayNameA
@ stub GetServiceDisplayNameW
@ stub GetServiceKeyNameA
...
...
dlls/advapi32/security.c
View file @
ee8411f4
...
...
@@ -26,6 +26,7 @@
#include "heap.h"
#include "winternl.h"
#include "ntsecapi.h"
#include "accctrl.h"
#include "wine/debug.h"
#include "wine/unicode.h"
...
...
@@ -1092,3 +1093,17 @@ BOOL WINAPI PrivilegeCheck( HANDLE ClientToken, PPRIVILEGE_SET RequiredPrivilege
*
pfResult
=
TRUE
;
return
TRUE
;
}
/******************************************************************************
* GetSecurityInfoExW [ADVAPI32.@]
*/
DWORD
WINAPI
GetSecurityInfoExW
(
HANDLE
hObject
,
SE_OBJECT_TYPE
ObjectType
,
SECURITY_INFORMATION
SecurityInfo
,
LPCWSTR
lpProvider
,
LPCWSTR
lpProperty
,
PACTRL_ACCESSW
*
ppAccessList
,
PACTRL_AUDITW
*
ppAuditList
,
LPWSTR
*
lppOwner
,
LPWSTR
*
lppGroup
)
{
FIXME
(
"stub!
\n
"
);
return
ERROR_BAD_PROVIDER
;
}
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