add stubs GetSecurityInfoExA/W
authorGunnar Dalsnes <hardon@online.no>
Sun, 21 Nov 2004 20:14:36 +0000 (20:14 +0000)
committerGunnar Dalsnes <hardon@online.no>
Sun, 21 Nov 2004 20:14:36 +0000 (20:14 +0000)
svn path=/trunk/; revision=11764

reactos/lib/advapi32/advapi32.def
reactos/lib/advapi32/sec/misc.c

index b15d679..3580124 100644 (file)
@@ -1,4 +1,4 @@
-; $Id: advapi32.def,v 1.24 2004/09/26 20:26:13 gvg Exp $
+; $Id: advapi32.def,v 1.25 2004/11/21 20:14:36 gdalsnes Exp $
 ;
 ; advapi32.def
 ;
@@ -158,6 +158,8 @@ GetSecurityDescriptorLength@4
 GetSecurityDescriptorOwner@12
 GetSecurityDescriptorSacl@16
 GetSecurityInfo@32
+GetSecurityInfoExA@36
+GetSecurityInfoExW@36
 GetServiceDisplayNameA@16
 GetServiceDisplayNameW@16
 GetServiceKeyNameA@16
index 9a83c75..5dfbc3e 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: misc.c,v 1.26 2004/09/26 21:15:51 sedwards Exp $
+/* $Id: misc.c,v 1.27 2004/11/21 20:14:36 gdalsnes Exp $
  *
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS system libraries
@@ -899,6 +899,47 @@ GetSecurityInfo(HANDLE handle,
 }
 
 
+
+/******************************************************************************
+ * GetSecurityInfoExW         EXPORTED
+ */
+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
+   )
+{
+  DPRINT1("GetSecurityInfoExA stub!\n");
+  return ERROR_BAD_PROVIDER; 
+}
+
+
+/******************************************************************************
+ * GetSecurityInfoExW         EXPORTED
+ */
+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
+   )
+{
+  DPRINT1("GetSecurityInfoExW stub!\n");
+  return ERROR_BAD_PROVIDER; 
+}
+
+
 /**********************************************************************
  * ImpersonateNamedPipeClient                  EXPORTED
  *