Added a few more stub implementations.
This commit is contained in:
parent
0e53bb3f7b
commit
475a81a818
|
@ -1635,8 +1635,20 @@ UINT WINAPI MsiGetUserInfoW(LPCWSTR szProduct, LPWSTR lpUserNameBuf,
|
||||||
return USERINFOSTATE_UNKNOWN;
|
return USERINFOSTATE_UNKNOWN;
|
||||||
}
|
}
|
||||||
|
|
||||||
UINT WINAPI MsiCollectUserInfoW(LPWSTR szProduct)
|
UINT WINAPI MsiCollectUserInfoW(LPCWSTR szProduct)
|
||||||
{
|
{
|
||||||
FIXME("%s\n",debugstr_w(szProduct));
|
FIXME("%s\n",debugstr_w(szProduct));
|
||||||
return ERROR_FUNCTION_FAILED;
|
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
UINT WINAPI MsiCollectUserInfoA(LPCSTR szProduct)
|
||||||
|
{
|
||||||
|
FIXME("%s\n",debugstr_a(szProduct));
|
||||||
|
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
UINT WINAPI MsiCreateAndVerifyInstallerDirectory(void)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
6 stdcall MsiAdvertiseProductW(wstr wstr wstr long)
|
6 stdcall MsiAdvertiseProductW(wstr wstr wstr long)
|
||||||
7 stdcall MsiCloseAllHandles()
|
7 stdcall MsiCloseAllHandles()
|
||||||
8 stdcall MsiCloseHandle(long)
|
8 stdcall MsiCloseHandle(long)
|
||||||
9 stub MsiCollectUserInfoA
|
9 stdcall MsiCollectUserInfoA(str)
|
||||||
10 stdcall MsiCollectUserInfoW(wstr)
|
10 stdcall MsiCollectUserInfoW(wstr)
|
||||||
11 stub MsiConfigureFeatureA
|
11 stub MsiConfigureFeatureA
|
||||||
12 stub MsiConfigureFeatureFromDescriptorA
|
12 stub MsiConfigureFeatureFromDescriptorA
|
||||||
|
@ -186,8 +186,8 @@
|
||||||
186 stub MsiCreateTransformSummaryInfoW
|
186 stub MsiCreateTransformSummaryInfoW
|
||||||
187 stub MsiQueryFeatureStateFromDescriptorA
|
187 stub MsiQueryFeatureStateFromDescriptorA
|
||||||
188 stub MsiQueryFeatureStateFromDescriptorW
|
188 stub MsiQueryFeatureStateFromDescriptorW
|
||||||
189 stub MsiConfigureProductExA
|
189 stdcall MsiConfigureProductExA(str long long str)
|
||||||
190 stdcall MsiConfigureProductExW (wstr long long wstr)
|
190 stdcall MsiConfigureProductExW(wstr long long wstr)
|
||||||
191 stub MsiInvalidateFeatureCache
|
191 stub MsiInvalidateFeatureCache
|
||||||
192 stub MsiUseFeatureExA
|
192 stub MsiUseFeatureExA
|
||||||
193 stdcall MsiUseFeatureExW(wstr wstr long long)
|
193 stdcall MsiUseFeatureExW(wstr wstr long long)
|
||||||
|
@ -197,8 +197,8 @@
|
||||||
197 stdcall MsiLoadStringW(long long long long long)
|
197 stdcall MsiLoadStringW(long long long long long)
|
||||||
198 stdcall MsiMessageBoxA(long long long long long long)
|
198 stdcall MsiMessageBoxA(long long long long long long)
|
||||||
199 stdcall MsiMessageBoxW(long long long long long long)
|
199 stdcall MsiMessageBoxW(long long long long long long)
|
||||||
200 stdcall MsiDecomposeDescriptorA(str str ptr ptr ptr)
|
200 stdcall MsiDecomposeDescriptorA(str ptr ptr ptr ptr)
|
||||||
201 stdcall MsiDecomposeDescriptorW(wstr wstr ptr ptr ptr)
|
201 stdcall MsiDecomposeDescriptorW(wstr ptr ptr ptr ptr)
|
||||||
202 stub MsiProvideQualifiedComponentExA
|
202 stub MsiProvideQualifiedComponentExA
|
||||||
203 stdcall MsiProvideQualifiedComponentExW(wstr wstr long wstr long long ptr ptr)
|
203 stdcall MsiProvideQualifiedComponentExW(wstr wstr long wstr long long ptr ptr)
|
||||||
204 stdcall MsiEnumRelatedProductsA(str long long ptr)
|
204 stdcall MsiEnumRelatedProductsA(str long long ptr)
|
||||||
|
@ -219,7 +219,7 @@
|
||||||
219 stub MsiGetFileHashW
|
219 stub MsiGetFileHashW
|
||||||
220 stub MsiEnumComponentCostsA
|
220 stub MsiEnumComponentCostsA
|
||||||
221 stub MsiEnumComponentCostsW
|
221 stub MsiEnumComponentCostsW
|
||||||
222 stub MsiCreateAndVerifyInstallerDirectory
|
222 stdcall MsiCreateAndVerifyInstallerDirectory()
|
||||||
223 stdcall MsiGetFileSignatureInformationA(str long ptr ptr ptr)
|
223 stdcall MsiGetFileSignatureInformationA(str long ptr ptr ptr)
|
||||||
224 stdcall MsiGetFileSignatureInformationW(wstr long ptr ptr ptr)
|
224 stdcall MsiGetFileSignatureInformationW(wstr long ptr ptr ptr)
|
||||||
225 stdcall MsiProvideAssemblyA(str str long long str ptr)
|
225 stdcall MsiProvideAssemblyA(str str long long str ptr)
|
||||||
|
|
|
@ -289,8 +289,9 @@ extern BOOL TABLE_Exists( MSIDATABASE *db, LPWSTR name );
|
||||||
|
|
||||||
extern UINT read_raw_stream_data( MSIDATABASE*, LPCWSTR stname,
|
extern UINT read_raw_stream_data( MSIDATABASE*, LPCWSTR stname,
|
||||||
USHORT **pdata, UINT *psz );
|
USHORT **pdata, UINT *psz );
|
||||||
|
|
||||||
|
/* action internals */
|
||||||
extern UINT ACTION_DoTopLevelINSTALL( MSIPACKAGE *, LPCWSTR, LPCWSTR );
|
extern UINT ACTION_DoTopLevelINSTALL( MSIPACKAGE *, LPCWSTR, LPCWSTR );
|
||||||
extern void ACTION_remove_tracked_tempfiles( MSIPACKAGE* );
|
|
||||||
extern void ACTION_free_package_structures( MSIPACKAGE* );
|
extern void ACTION_free_package_structures( MSIPACKAGE* );
|
||||||
|
|
||||||
/* record internals */
|
/* record internals */
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* Implementation of the Microsoft Installer (msi.dll)
|
* Implementation of the Microsoft Installer (msi.dll)
|
||||||
*
|
*
|
||||||
* Copyright 2005 Mike McCormak for CodeWeavers
|
* Copyright 2005 Mike McCormack for CodeWeavers
|
||||||
* Copyright 2005 Aric Stewart for CodeWeavers
|
* Copyright 2005 Aric Stewart for CodeWeavers
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
|
|
Loading…
Reference in New Issue