authz: Stub AuthzInstallSecurityEventSource.

Vincent Povirk madewokherd at gmail.com
Tue Oct 28 15:22:38 CDT 2014


-------------- next part --------------
From 033e7a3f285a07cfac937a2fd06e5e55326c1493 Mon Sep 17 00:00:00 2001
From: Vincent Povirk <vincent at codeweavers.com>
Date: Thu, 28 Aug 2014 14:45:32 -0500
Subject: [PATCH 1/3] authz: Stub AuthzInstallSecurityEventSource.

---
 dlls/authz/authz.c    | 11 +++++++++++
 dlls/authz/authz.spec |  2 +-
 2 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/dlls/authz/authz.c b/dlls/authz/authz.c
index 2c1f3d1..08ca8c3 100644
--- a/dlls/authz/authz.c
+++ b/dlls/authz/authz.c
@@ -56,3 +56,14 @@ BOOL WINAPI AuthzInitializeResourceManager(DWORD flags, LPVOID pfnAccessChecker,
     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     return FALSE;
 }
+
+
+/***********************************************************************
+ *              AuthzInstallSecurityEventSource (AUTHZ.@)
+ */
+BOOL WINAPI AuthzInstallSecurityEventSource(DWORD dwFlags, LPVOID pRegistration)
+{
+    FIXME("(0x%X,%p): stub\n", dwFlags, pRegistration);
+    SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
+    return FALSE;
+}
diff --git a/dlls/authz/authz.spec b/dlls/authz/authz.spec
index 8ffd52b..acf3228 100644
--- a/dlls/authz/authz.spec
+++ b/dlls/authz/authz.spec
@@ -14,7 +14,7 @@
 @ stub AuthzInitializeObjectAccessAuditEvent
 @ stub AuthzInitializeObjectAccessAuditEvent2
 @ stdcall AuthzInitializeResourceManager(long ptr ptr ptr wstr ptr)
-@ stub AuthzInstallSecurityEventSource
+@ stdcall AuthzInstallSecurityEventSource(long ptr)
 @ stub AuthzOpenObjectAudit
 @ stub AuthzRegisterSecurityEventSource
 @ stub AuthzReportSecurityEvent
-- 
2.1.0



More information about the wine-patches mailing list