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
be9875fb
Commit
be9875fb
authored
Feb 23, 2009
by
Paul Bryan Roberts
Committed by
Alexandre Julliard
Feb 25, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Add stub for GetSecurityInfoExA.
parent
a1ca18ea
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 @
be9875fb
...
...
@@ -272,7 +272,7 @@
# @ stub GetSecurityDescriptorRMControl
@ stdcall GetSecurityDescriptorSacl (ptr ptr ptr ptr)
@ stdcall GetSecurityInfo (long long long ptr ptr ptr ptr ptr)
# @ stub GetSecurityInfoExA
@ stdcall GetSecurityInfoExA (long long long str str ptr ptr ptr ptr)
@ stdcall GetSecurityInfoExW (long long long wstr wstr ptr ptr ptr ptr)
@ stdcall GetServiceDisplayNameA(ptr str ptr ptr)
@ stdcall GetServiceDisplayNameW(ptr wstr ptr ptr)
...
...
dlls/advapi32/security.c
View file @
be9875fb
...
...
@@ -2946,6 +2946,20 @@ DWORD WINAPI GetSecurityInfo(
}
/******************************************************************************
* GetSecurityInfoExA [ADVAPI32.@]
*/
DWORD
WINAPI
GetSecurityInfoExA
(
HANDLE
hObject
,
SE_OBJECT_TYPE
ObjectType
,
SECURITY_INFORMATION
SecurityInfo
,
LPCSTR
lpProvider
,
LPCSTR
lpProperty
,
PACTRL_ACCESSA
*
ppAccessList
,
PACTRL_AUDITA
*
ppAuditList
,
LPSTR
*
lppOwner
,
LPSTR
*
lppGroup
)
{
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