secur32: add stub for LsaLookupAuthenticationPackage

Louis. Lenders xerox_xerox2000 at yahoo.co.uk
Thu Aug 16 14:52:01 CDT 2007


Skipped content of type multipart/alternative-------------- next part --------------
diff --git a/dlls/secur32/secur32.c b/dlls/secur32/secur32.c
index aabb56c..fe24955 100644
--- a/dlls/secur32/secur32.c
+++ b/dlls/secur32/secur32.c
@@ -1073,6 +1073,12 @@ NTSTATUS WINAPI LsaDeregisterLogonProcess(HANDLE LsaHandle)
     return 0;
 }
 
+NTSTATUS WINAPI LsaLookupAuthenticationPackage(HANDLE LsaHandle, PLSA_STRING PackageName, PULONG AuthenticationPackage)
+{
+    FIXME("%p %p %p stub\n", LsaHandle, PackageName, AuthenticationPackage);
+    return STATUS_SUCCESS;
+}
+
 BOOLEAN WINAPI TranslateNameA(
   LPCSTR lpAccountName, EXTENDED_NAME_FORMAT AccountNameFormat,
   EXTENDED_NAME_FORMAT DesiredNameFormat, LPSTR lpTranslatedName,
diff --git a/dlls/secur32/secur32.spec b/dlls/secur32/secur32.spec
index 5e73003..d6dc936 100644
--- a/dlls/secur32/secur32.spec
+++ b/dlls/secur32/secur32.spec
@@ -39,7 +39,7 @@
 @ stub LsaFreeReturnBuffer
 @ stub LsaGetLogonSessionData
 @ stub LsaLogonUser
-@ stub LsaLookupAuthenticationPackage
+@ stdcall LsaLookupAuthenticationPackage(ptr ptr ptr)
 @ stub LsaRegisterLogonProcess
 @ stub LsaRegisterPolicyChangeNotification
 @ stub LsaUnregisterPolicyChangeNotification


More information about the wine-patches mailing list