Commit in reactos/lib/advapi32 on MAIN
advapi32.def+2-21.19 -> 1.20
advapi32.edf+2-21.39 -> 1.40
sec/misc.c+21-11.20 -> 1.21
+25-5
3 modified files
export GetSecurityInfo()

reactos/lib/advapi32
advapi32.def 1.19 -> 1.20
diff -u -r1.19 -r1.20
--- advapi32.def	26 May 2004 09:50:09 -0000	1.19
+++ advapi32.def	10 Jul 2004 14:38:23 -0000	1.20
@@ -1,4 +1,4 @@
-; $Id: advapi32.def,v 1.19 2004/05/26 09:50:09 weiden Exp $
+; $Id: advapi32.def,v 1.20 2004/07/10 14:38:23 weiden Exp $
 ;
 ; advapi32.def
 ;
@@ -155,7 +155,7 @@
 GetSecurityDescriptorLength@4
 GetSecurityDescriptorOwner@12
 GetSecurityDescriptorSacl@16
-;GetSecurityInfo@32
+GetSecurityInfo@32
 GetServiceDisplayNameA@16
 GetServiceDisplayNameW@16
 GetServiceKeyNameA@16

reactos/lib/advapi32
advapi32.edf 1.39 -> 1.40
diff -u -r1.39 -r1.40
--- advapi32.edf	26 May 2004 09:50:10 -0000	1.39
+++ advapi32.edf	10 Jul 2004 14:38:23 -0000	1.40
@@ -1,4 +1,4 @@
-; $Id: advapi32.edf,v 1.39 2004/05/26 09:50:10 weiden Exp $
+; $Id: advapi32.edf,v 1.40 2004/07/10 14:38:23 weiden Exp $
 ;
 ; advapi32.edf
 ;
@@ -151,7 +151,7 @@
 GetSecurityDescriptorLength=GetSecurityDescriptorLength@4
 GetSecurityDescriptorOwner=GetSecurityDescriptorOwner@12
 GetSecurityDescriptorSacl=GetSecurityDescriptorSacl@16
-;GetSecurityInfo=GetSecurityInfo@32
+GetSecurityInfo=GetSecurityInfo@32
 GetServiceDisplayNameA=GetServiceDisplayNameA@16
 GetServiceDisplayNameW=GetServiceDisplayNameW@16
 GetServiceKeyNameA=GetServiceKeyNameA@16

reactos/lib/advapi32/sec
misc.c 1.20 -> 1.21
diff -u -r1.20 -r1.21
--- misc.c	9 Jul 2004 20:10:45 -0000	1.20
+++ misc.c	10 Jul 2004 14:38:24 -0000	1.21
@@ -1,4 +1,4 @@
-/* $Id: misc.c,v 1.20 2004/07/09 20:10:45 navaraf Exp $
+/* $Id: misc.c,v 1.21 2004/07/10 14:38:24 weiden Exp $
  *
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS system libraries
@@ -668,4 +668,24 @@
   return ERROR_CALL_NOT_IMPLEMENTED;
 }
 
+
+/**********************************************************************
+ * GetSecurityInfo				EXPORTED
+ *
+ * @unimplemented
+ */
+DWORD STDCALL
+GetSecurityInfo(HANDLE handle,
+                SE_OBJECT_TYPE ObjectType,
+                SECURITY_INFORMATION SecurityInfo,
+                PSID* ppsidOwner,
+                PSID* ppsidGroup,
+                PACL* ppDacl,
+                PACL* ppSacl,
+                PSECURITY_DESCRIPTOR* ppSecurityDescriptor)
+{
+  DPRINT1("GetSecurityInfo: stub\n");
+  return ERROR_CALL_NOT_IMPLEMENTED;
+}
+
 /* EOF */
CVSspam 0.2.8