Paul Bryan Roberts : advapi32: Add stub for GetSecurityInfoExA.

Alexandre Julliard julliard at winehq.org
Wed Feb 25 09:22:50 CST 2009


Module: wine
Branch: master
Commit: be9875fb609fe7b834b129eaf48b37cee36f501c
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=be9875fb609fe7b834b129eaf48b37cee36f501c

Author: Paul Bryan Roberts <pbronline-wine at yahoo.co.uk>
Date:   Mon Feb 23 19:31:05 2009 +0000

advapi32: Add stub for GetSecurityInfoExA.

---

 dlls/advapi32/advapi32.spec |    2 +-
 dlls/advapi32/security.c    |   14 ++++++++++++++
 2 files changed, 15 insertions(+), 1 deletions(-)

diff --git a/dlls/advapi32/advapi32.spec b/dlls/advapi32/advapi32.spec
index 219e3d1..bcb2047 100644
--- a/dlls/advapi32/advapi32.spec
+++ b/dlls/advapi32/advapi32.spec
@@ -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)
diff --git a/dlls/advapi32/security.c b/dlls/advapi32/security.c
index 65fa0db..454c98f 100644
--- a/dlls/advapi32/security.c
+++ b/dlls/advapi32/security.c
@@ -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(




More information about the wine-cvs mailing list