Module: wine Branch: refs/heads/master Commit: fc56e92657ddb67c6374e51ae23b90207d44049b URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=fc56e92657ddb67c6374e51a...
Author: James Hawkins truiken@gmail.com Date: Tue Jul 18 13:39:55 2006 -0700
msi: Add a stub implementation of MsiSourceListClearAll.
---
dlls/msi/msi.spec | 4 ++-- dlls/msi/source.c | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 2 deletions(-)
diff --git a/dlls/msi/msi.spec b/dlls/msi/msi.spec index d696319..27c04c8 100644 --- a/dlls/msi/msi.spec +++ b/dlls/msi/msi.spec @@ -201,8 +201,8 @@ 205 stdcall MsiEnumRelatedProductsW(wstr long long ptr) 206 stub MsiSetFeatureAttributesA 207 stub MsiSetFeatureAttributesW -208 stub MsiSourceListClearAllA -209 stub MsiSourceListClearAllW +208 stdcall MsiSourceListClearAllA(str str long) +209 stdcall MsiSourceListClearAllW(wstr wstr long) 210 stdcall MsiSourceListAddSourceA(str str long str) 211 stdcall MsiSourceListAddSourceW(wstr wstr long wstr) 212 stub MsiSourceListForceResolutionA diff --git a/dlls/msi/source.c b/dlls/msi/source.c index 4575429..ca66c1f 100644 --- a/dlls/msi/source.c +++ b/dlls/msi/source.c @@ -617,3 +617,21 @@ UINT WINAPI MsiSourceListAddMediaDiskW(L
return ERROR_SUCCESS; } + +/****************************************************************** + * MsiSourceListAddSourceExA (MSI.@) + */ +UINT WINAPI MsiSourceListClearAllA( LPCSTR szProduct, LPCSTR szUserName, DWORD dwReserved ) +{ + FIXME("(%s %s %ld) stub\n", debugstr_a(szProduct), debugstr_a(szUserName), dwReserved); + return ERROR_SUCCESS; +} + +/****************************************************************** + * MsiSourceListAddSourceExW (MSI.@) + */ +UINT WINAPI MsiSourceListClearAllW( LPCWSTR szProduct, LPCWSTR szUserName, DWORD dwReserved ) +{ + FIXME("(%s %s %ld) stub\n", debugstr_w(szProduct), debugstr_w(szUserName), dwReserved); + return ERROR_SUCCESS; +}