create stub functions for advapi32.GetExplicitEntriesFromAclA/W()

Mike McCormack mike at codeweavers.com
Thu Sep 18 08:53:17 CDT 2003


ChangeLog:
* create stub functions for advapi32.GetExplicitEntriesFromAclA/W()
-------------- next part --------------
Index: dlls/advapi32/advapi32.spec
===================================================================
RCS file: /home/wine/wine/dlls/advapi32/advapi32.spec,v
retrieving revision 1.41
diff -u -r1.41 advapi32.spec
--- dlls/advapi32/advapi32.spec	13 Aug 2003 19:34:57 -0000	1.41
+++ dlls/advapi32/advapi32.spec	17 Sep 2003 10:31:03 -0000
@@ -96,6 +96,8 @@
 @ stdcall GetAclInformation(ptr ptr long long)
 @ stdcall GetCurrentHwProfileA(ptr)
 @ stub GetEffectiveRightsFromAclA
+@ stdcall GetExplicitEntriesFromAclA(ptr ptr ptr)
+@ stdcall GetExplicitEntriesFromAclW(ptr ptr ptr)
 @ stdcall GetFileSecurityA(str long ptr long ptr)
 @ stdcall GetFileSecurityW(wstr long ptr long ptr)
 @ stub GetKernelObjectSecurity
Index: dlls/advapi32/security.c
===================================================================
RCS file: /home/wine/wine/dlls/advapi32/security.c,v
retrieving revision 1.59
diff -u -r1.59 security.c
--- dlls/advapi32/security.c	5 Sep 2003 23:08:44 -0000	1.59
+++ dlls/advapi32/security.c	17 Sep 2003 10:31:04 -0000
@@ -1398,3 +1398,23 @@
            SecurityInfo, psidOwner, psidGroup, pDacl, pSacl);
     return ERROR_CALL_NOT_IMPLEMENTED;
 }
+
+/******************************************************************************
+ * GetExplicitEntriesFromAclA [ADVAPI32.@]
+ */
+DWORD WINAPI GetExplicitEntriesFromAclA( PACL pacl, PULONG pcCountOfExplicitEntries,
+        PEXPLICIT_ACCESSA* pListOfExplicitEntries)
+{
+    FIXME("%p %p %p\n",pacl, pcCountOfExplicitEntries, pListOfExplicitEntries);
+    return ERROR_CALL_NOT_IMPLEMENTED;
+}
+
+/******************************************************************************
+ * GetExplicitEntriesFromAclW [ADVAPI32.@]
+ */
+DWORD WINAPI GetExplicitEntriesFromAclW( PACL pacl, PULONG pcCountOfExplicitEntries,
+        PEXPLICIT_ACCESSW* pListOfExplicitEntries)
+{
+    FIXME("%p %p %p\n",pacl, pcCountOfExplicitEntries, pListOfExplicitEntries);
+    return ERROR_CALL_NOT_IMPLEMENTED;
+}


More information about the wine-patches mailing list