Correct spec entry for MsiLoadString*.

Pseudo stubs for MsiLocateComponent*.
This commit is contained in:
Hans Leidekker 2004-04-12 22:06:12 +00:00 committed by Alexandre Julliard
parent e1d413da84
commit c2da57e27b
2 changed files with 20 additions and 8 deletions

View File

@ -516,18 +516,30 @@ INSTALLUILEVEL WINAPI MsiSetInternalUI(INSTALLUILEVEL dwUILevel, HWND *phWnd)
return dwUILevel; return dwUILevel;
} }
UINT WINAPI MsiLoadStringA(DWORD a, DWORD b, DWORD c, DWORD d, DWORD e, DWORD f) UINT WINAPI MsiLoadStringA(DWORD a, DWORD b, DWORD c, DWORD d, DWORD e)
{ {
FIXME("%08lx %08lx %08lx %08lx %08lx %08lx\n",a,b,c,d,e,f); FIXME("%08lx %08lx %08lx %08lx %08lx\n",a,b,c,d,e);
return ERROR_CALL_NOT_IMPLEMENTED; return ERROR_CALL_NOT_IMPLEMENTED;
} }
UINT WINAPI MsiLoadStringW(DWORD a, DWORD b, DWORD c, DWORD d, DWORD e, DWORD f) UINT WINAPI MsiLoadStringW(DWORD a, DWORD b, DWORD c, DWORD d, DWORD e)
{ {
FIXME("%08lx %08lx %08lx %08lx %08lx %08lx\n",a,b,c,d,e,f); FIXME("%08lx %08lx %08lx %08lx %08lx\n",a,b,c,d,e);
return ERROR_CALL_NOT_IMPLEMENTED; return ERROR_CALL_NOT_IMPLEMENTED;
} }
INSTALLSTATE WINAPI MsiLocateComponentA(LPCSTR szComponent, LPSTR lpPathBuf, DWORD *pcchBuf)
{
FIXME("%s %p %08lx\n", debugstr_a(szComponent), lpPathBuf, *pcchBuf);
return INSTALLSTATE_UNKNOWN;
}
INSTALLSTATE WINAPI MsiLocateComponentW(LPCWSTR szComponent, LPSTR lpPathBuf, DWORD *pcchBuf)
{
FIXME("%s %p %08lx\n", debugstr_w(szComponent), lpPathBuf, *pcchBuf);
return INSTALLSTATE_UNKNOWN;
}
UINT WINAPI MsiMessageBoxA(DWORD a, DWORD b, DWORD c, DWORD d, DWORD e, DWORD f) UINT WINAPI MsiMessageBoxA(DWORD a, DWORD b, DWORD c, DWORD d, DWORD e, DWORD f)
{ {
FIXME("%08lx %08lx %08lx %08lx %08lx %08lx\n",a,b,c,d,e,f); FIXME("%08lx %08lx %08lx %08lx %08lx %08lx\n",a,b,c,d,e,f);

View File

@ -86,8 +86,8 @@
86 stub MsiInstallMissingFileW 86 stub MsiInstallMissingFileW
87 stdcall MsiInstallProductA(str str) 87 stdcall MsiInstallProductA(str str)
88 stdcall MsiInstallProductW(wstr wstr) 88 stdcall MsiInstallProductW(wstr wstr)
89 stub MsiLocateComponentA 89 stdcall MsiLocateComponentA(str ptr long)
90 stub MsiLocateComponentW 90 stdcall MsiLocateComponentW(wstr ptr long)
91 stdcall MsiOpenDatabaseA(str str ptr) 91 stdcall MsiOpenDatabaseA(str str ptr)
92 stdcall MsiOpenDatabaseW(wstr wstr ptr) 92 stdcall MsiOpenDatabaseW(wstr wstr ptr)
93 stdcall MsiOpenPackageA(str ptr) 93 stdcall MsiOpenPackageA(str ptr)
@ -193,8 +193,8 @@
193 stub MsiUseFeatureExW 193 stub MsiUseFeatureExW
194 stub MsiGetFileVersionA 194 stub MsiGetFileVersionA
195 stub MsiGetFileVersionW 195 stub MsiGetFileVersionW
196 stdcall MsiLoadStringA(long long long long long long) 196 stdcall MsiLoadStringA(long long long long long)
197 stdcall MsiLoadStringW(long 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 stub MsiDecomposeDescriptorA 200 stub MsiDecomposeDescriptorA