Hans Leidekker : msi: Add stub implementations of MsiSourceListClearAllExA/ W.

Alexandre Julliard julliard at winehq.org
Tue Mar 24 09:02:00 CDT 2009


Module: wine
Branch: master
Commit: c844582177ba7653c0e912702c0d5f7ad3edcd69
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=c844582177ba7653c0e912702c0d5f7ad3edcd69

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Tue Mar 24 10:25:54 2009 +0100

msi: Add stub implementations of MsiSourceListClearAllExA/W.

---

 dlls/msi/msi.spec |    4 ++--
 dlls/msi/source.c |   22 ++++++++++++++++++++++
 2 files changed, 24 insertions(+), 2 deletions(-)

diff --git a/dlls/msi/msi.spec b/dlls/msi/msi.spec
index 7f0627a..14178e8 100644
--- a/dlls/msi/msi.spec
+++ b/dlls/msi/msi.spec
@@ -252,8 +252,8 @@
 256 stdcall MsiSourceListAddSourceExW(wstr wstr long long wstr long)
 257 stdcall MsiSourceListClearSourceA(str str long long str)
 258 stdcall MsiSourceListClearSourceW(wstr wstr long long wstr)
-259 stub MsiSourceListClearAllExA
-260 stub MsiSourceListClearAllExW
+259 stdcall MsiSourceListClearAllExA(str str long long)
+260 stdcall MsiSourceListClearAllExW(wstr wstr long long)
 261 stub MsiSourceListForceResolutionExA
 262 stub MsiSourceListForceResolutionExW
 263 stdcall MsiSourceListEnumSourcesA(str str long long long ptr ptr)
diff --git a/dlls/msi/source.c b/dlls/msi/source.c
index 7d61618..df5905d 100644
--- a/dlls/msi/source.c
+++ b/dlls/msi/source.c
@@ -1320,6 +1320,28 @@ UINT WINAPI MsiSourceListClearAllW( LPCWSTR szProduct, LPCWSTR szUserName, DWORD
 }
 
 /******************************************************************
+ *  MsiSourceListClearAllExA (MSI.@)
+ */
+UINT WINAPI MsiSourceListClearAllExA( LPCSTR szProduct, LPCSTR szUserSid,
+    MSIINSTALLCONTEXT dwContext, DWORD dwOptions )
+{
+    FIXME("(%s %s %d %08x)\n", debugstr_a(szProduct), debugstr_a(szUserSid),
+          dwContext, dwOptions);
+    return ERROR_SUCCESS;
+}
+
+/******************************************************************
+ *  MsiSourceListClearAllExW (MSI.@)
+ */
+UINT WINAPI MsiSourceListClearAllExW( LPCWSTR szProduct, LPCWSTR szUserSid,
+    MSIINSTALLCONTEXT dwContext, DWORD dwOptions )
+{
+    FIXME("(%s %s %d %08x)\n", debugstr_w(szProduct), debugstr_w(szUserSid),
+          dwContext, dwOptions);
+    return ERROR_SUCCESS;
+}
+
+/******************************************************************
  *  MsiSourceListClearSourceA (MSI.@)
  */
 UINT WINAPI MsiSourceListClearSourceA(LPCSTR szProductCodeOrPatchCode, LPCSTR szUserSid,




More information about the wine-cvs mailing list