Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
18e195a8
Commit
18e195a8
authored
Aug 26, 2004
by
Evan Deaubl
Committed by
Alexandre Julliard
Aug 26, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added GetSecurityInfo stub.
parent
9638e02d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
security.c
dlls/advapi32/security.c
+14
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
18e195a8
...
...
@@ -122,7 +122,7 @@
@ stdcall GetSecurityDescriptorLength(ptr)
@ stdcall GetSecurityDescriptorOwner(ptr ptr ptr)
@ stdcall GetSecurityDescriptorSacl (ptr ptr ptr ptr)
@ st
ub GetSecurityInfo #(long long long ptr ptr ptr ptr ptr) GetSecurityInfo
@ st
dcall GetSecurityInfo (long long long ptr ptr ptr ptr ptr)
@ stdcall GetSecurityInfoExW (long long long wstr wstr ptr ptr wstr wstr)
@ stub GetServiceDisplayNameA
@ stub GetServiceDisplayNameW
...
...
dlls/advapi32/security.c
View file @
18e195a8
...
...
@@ -1495,6 +1495,20 @@ BOOL WINAPI AccessCheckAndAuditAlarmW(LPCWSTR Subsystem, LPVOID HandleId, LPWSTR
/******************************************************************************
* GetSecurityInfo [ADVAPI32.@]
*/
DWORD
WINAPI
GetSecurityInfo
(
HANDLE
hObject
,
SE_OBJECT_TYPE
ObjectType
,
SECURITY_INFORMATION
SecurityInfo
,
PSID
*
ppsidOwner
,
PSID
*
ppsidGroup
,
PACL
*
ppDacl
,
PACL
*
ppSacl
,
PSECURITY_DESCRIPTOR
*
ppSecurityDescriptor
)
{
FIXME
(
"stub!
\n
"
);
return
ERROR_BAD_PROVIDER
;
}
/******************************************************************************
* GetSecurityInfoExW [ADVAPI32.@]
*/
DWORD
WINAPI
GetSecurityInfoExW
(
...
...
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