mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[WINESYNC] msi: Add MsiSourceListForceResolution{A,W} stub.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46881 Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id 2e95d2247d8fb83d040bdfce388ed4e96172427c by Louis Lenders <xerox.xerox2000x@gmail.com>
This commit is contained in:
parent
d672ffc384
commit
b3eae05b11
3 changed files with 24 additions and 2 deletions
|
@ -205,8 +205,8 @@
|
|||
209 stdcall MsiSourceListClearAllW(wstr wstr long)
|
||||
210 stdcall MsiSourceListAddSourceA(str str long str)
|
||||
211 stdcall MsiSourceListAddSourceW(wstr wstr long wstr)
|
||||
212 stub MsiSourceListForceResolutionA
|
||||
213 stub MsiSourceListForceResolutionW
|
||||
212 stdcall MsiSourceListForceResolutionA(str str long)
|
||||
213 stdcall MsiSourceListForceResolutionW(wstr wstr long)
|
||||
214 stdcall MsiIsProductElevatedA(str ptr)
|
||||
215 stdcall MsiIsProductElevatedW(wstr ptr)
|
||||
216 stdcall MsiGetShortcutTargetA(str ptr ptr ptr)
|
||||
|
|
|
@ -1330,3 +1330,21 @@ UINT WINAPI MsiSourceListClearSourceW(LPCWSTR szProductCodeOrPatchCode, LPCWSTR
|
|||
dwContext, dwOptions, debugstr_w(szSource));
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
* MsiSourceListForceResolutionA (MSI.@)
|
||||
*/
|
||||
UINT WINAPI MsiSourceListForceResolutionA(const CHAR *product, const CHAR *user, DWORD reserved)
|
||||
{
|
||||
FIXME("(%s %s %x)\n", debugstr_a(product), debugstr_a(user), reserved);
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
* MsiSourceListForceResolutionW (MSI.@)
|
||||
*/
|
||||
UINT WINAPI MsiSourceListForceResolutionW(const WCHAR *product, const WCHAR *user, DWORD reserved)
|
||||
{
|
||||
FIXME("(%s %s %x)\n", debugstr_w(product), debugstr_w(user), reserved);
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
|
|
@ -1344,6 +1344,10 @@ MsiSourceListAddMediaDiskW(
|
|||
|
||||
#define MsiSourceListAddMediaDisk WINELIB_NAME_AW(MsiSourceListAddMediaDisk)
|
||||
|
||||
UINT WINAPI MsiSourceListForceResolutionA(const CHAR*, const CHAR*, DWORD);
|
||||
UINT WINAPI MsiSourceListForceResolutionW(const WCHAR*, const WCHAR*, DWORD);
|
||||
#define MsiSourceListForceResolution WINELIB_NAME_AW(MsiSourceListForceResolution)
|
||||
|
||||
UINT
|
||||
WINAPI
|
||||
MsiEnumPatchesA(
|
||||
|
|
Loading…
Reference in a new issue