2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2002,2003,2004 Mike McCormack for CodeWeavers
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #define NONAMELESSUNION
30 #include "wine/debug.h"
36 #include "wine/unicode.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(msi);
44 * The MSVC headers define the MSIDBOPEN_* macros cast to LPCTSTR,
45 * which is a problem because LPCTSTR isn't defined when compiling wine.
46 * To work around this problem, we need to define LPCTSTR as LPCWSTR here,
47 * and make sure to only use it in W functions.
49 #define LPCTSTR LPCWSTR
51 DEFINE_GUID( CLSID_MsiDatabase, 0x000c1084, 0x0000, 0x0000, 0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
53 static const WCHAR szInstaller[] = {
54 'S','o','f','t','w','a','r','e','\\',
55 'M','i','c','r','o','s','o','f','t','\\',
56 'W','i','n','d','o','w','s','\\',
57 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
58 'I','n','s','t','a','l','l','e','r',0 };
60 static const WCHAR szFeatures[] = {
61 'F','e','a','t','u','r','e','s',0 };
62 static const WCHAR szComponents[] = {
63 'C','o','m','p','o','n','e','n','t','s',0 };
66 INSTALLUILEVEL gUILevel;
68 INSTALLUI_HANDLERA gUIHandler;
71 WCHAR gszLogFile[MAX_PATH];
76 * A .msi file is a structured storage file.
77 * It should contain a number of streams.
80 BOOL unsquash_guid(LPCWSTR in, LPWSTR out)
96 out[n++] = in[17+i*2];
97 out[n++] = in[16+i*2];
102 out[n++] = in[17+i*2];
103 out[n++] = in[16+i*2];
110 BOOL squash_guid(LPCWSTR in, LPWSTR out)
130 out[17+i*2] = in[n++];
131 out[16+i*2] = in[n++];
137 out[17+i*2] = in[n++];
138 out[16+i*2] = in[n++];
148 /* tables for encoding and decoding base85 */
149 static const unsigned char table_dec85[0x80] = {
150 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
151 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
152 0xff,0x00,0xff,0xff,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0a,0x0b,0xff,
153 0x0c,0x0d,0x0e,0x0f,0x10,0x11,0x12,0x13,0x14,0x15,0xff,0xff,0xff,0x16,0xff,0x17,
154 0x18,0x19,0x1a,0x1b,0x1c,0x1d,0x1e,0x1f,0x20,0x21,0x22,0x23,0x24,0x25,0x26,0x27,
155 0x28,0x29,0x2a,0x2b,0x2c,0x2d,0x2e,0x2f,0x30,0x31,0x32,0x33,0xff,0x34,0x35,0x36,
156 0x37,0x38,0x39,0x3a,0x3b,0x3c,0x3d,0x3e,0x3f,0x40,0x41,0x42,0x43,0x44,0x45,0x46,
157 0x47,0x48,0x49,0x4a,0x4b,0x4c,0x4d,0x4e,0x4f,0x50,0x51,0x52,0xff,0x53,0x54,0xff,
160 static const char table_enc85[] =
161 "!$%&'()*+,-.0123456789=?@ABCDEFGHIJKLMNO"
162 "PQRSTUVWXYZ[]^_`abcdefghijklmnopqrstuvwx"
166 * Converts a base85 encoded guid into a GUID pointer
167 * Base85 encoded GUIDs should be 20 characters long.
169 * returns TRUE if successful, FALSE if not
171 BOOL decode_base85_guid( LPCWSTR str, GUID *guid )
173 DWORD i, val = 0, base = 1, *p;
176 for( i=0; i<20; i++ )
183 val += table_dec85[str[i]] * base;
186 if( table_dec85[str[i]] == 0xff )
196 * Encodes a base85 guid given a GUID pointer
197 * Caller should provide a 21 character buffer for the encoded string.
199 * returns TRUE if successful, FALSE if not
201 BOOL encode_base85_guid( GUID *guid, LPWSTR str )
203 unsigned int x, *p, i;
205 p = (unsigned int*) guid;
209 *str++ = table_enc85[x%85];
211 *str++ = table_enc85[x%85];
213 *str++ = table_enc85[x%85];
215 *str++ = table_enc85[x%85];
217 *str++ = table_enc85[x%85];
225 VOID MSI_CloseDatabase( MSIOBJECTHDR *arg )
227 MSIDATABASE *db = (MSIDATABASE *) arg;
229 free_cached_tables( db );
230 IStorage_Release( db->storage );
233 UINT MSI_OpenDatabaseW(LPCWSTR szDBPath, LPCWSTR szPersist, MSIDATABASE **pdb)
235 IStorage *stg = NULL;
237 MSIDATABASE *db = NULL;
238 UINT ret = ERROR_FUNCTION_FAILED;
242 TRACE("%s %s\n",debugstr_w(szDBPath),debugstr_w(szPersist) );
245 return ERROR_INVALID_PARAMETER;
247 szMode = (LPWSTR) szPersist;
248 if( HIWORD( szPersist ) )
250 /* UINT len = lstrlenW( szPerist ) + 1; */
251 FIXME("don't support persist files yet\b");
252 return ERROR_INVALID_PARAMETER;
253 /* szMode = HeapAlloc( GetProcessHeap(), 0, len * sizeof (DWORD) ); */
255 else if( szPersist == MSIDBOPEN_READONLY )
257 r = StgOpenStorage( szDBPath, NULL,
258 STGM_DIRECT|STGM_READ|STGM_SHARE_DENY_WRITE, NULL, 0, &stg);
260 else if( szPersist == MSIDBOPEN_CREATE )
262 r = StgCreateDocfile( szDBPath,
263 STGM_DIRECT|STGM_READWRITE|STGM_SHARE_EXCLUSIVE, 0, &stg);
264 if( r == ERROR_SUCCESS )
266 IStorage_SetClass( stg, &CLSID_MsiDatabase );
267 r = init_string_table( stg );
270 else if( szPersist == MSIDBOPEN_TRANSACT )
272 r = StgOpenStorage( szDBPath, NULL,
273 STGM_DIRECT|STGM_READWRITE|STGM_SHARE_EXCLUSIVE, NULL, 0, &stg);
277 ERR("unknown flag %p\n",szPersist);
278 return ERROR_INVALID_PARAMETER;
283 FIXME("open failed r = %08lx!\n",r);
284 return ERROR_FUNCTION_FAILED;
287 r = IStorage_Stat( stg, &stat, STATFLAG_NONAME );
290 FIXME("Failed to stat storage\n");
294 if( memcmp( &stat.clsid, &CLSID_MsiDatabase, sizeof (GUID) ) )
296 ERR("storage GUID is not a MSI database GUID %s\n",
297 debugstr_guid(&stat.clsid) );
302 db = alloc_msiobject( MSIHANDLETYPE_DATABASE, sizeof (MSIDATABASE),
306 FIXME("Failed to allocate a handle\n");
310 if( TRACE_ON( msi ) )
311 enum_stream_names( stg );
316 ret = load_string_table( db );
317 if( ret != ERROR_SUCCESS )
320 msiobj_addref( &db->hdr );
321 IStorage_AddRef( stg );
326 msiobj_release( &db->hdr );
328 IStorage_Release( stg );
333 UINT WINAPI MsiOpenDatabaseW(LPCWSTR szDBPath, LPCWSTR szPersist, MSIHANDLE *phDB)
338 TRACE("%s %s %p\n",debugstr_w(szDBPath),debugstr_w(szPersist), phDB);
340 ret = MSI_OpenDatabaseW( szDBPath, szPersist, &db );
341 if( ret == ERROR_SUCCESS )
343 *phDB = alloc_msihandle( &db->hdr );
344 msiobj_release( &db->hdr );
350 UINT WINAPI MsiOpenDatabaseA(LPCSTR szDBPath, LPCSTR szPersist, MSIHANDLE *phDB)
352 HRESULT r = ERROR_FUNCTION_FAILED;
353 LPWSTR szwDBPath = NULL, szwPersist = NULL;
356 TRACE("%s %s %p\n", debugstr_a(szDBPath), debugstr_a(szPersist), phDB);
360 len = MultiByteToWideChar( CP_ACP, 0, szDBPath, -1, NULL, 0 );
361 szwDBPath = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
364 MultiByteToWideChar( CP_ACP, 0, szDBPath, -1, szwDBPath, len );
367 if( HIWORD(szPersist) )
369 len = MultiByteToWideChar( CP_ACP, 0, szPersist, -1, NULL, 0 );
370 szwPersist = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
373 MultiByteToWideChar( CP_ACP, 0, szPersist, -1, szwPersist, len );
376 szwPersist = (LPWSTR) szPersist;
378 r = MsiOpenDatabaseW( szwDBPath, szwPersist, phDB );
382 HeapFree( GetProcessHeap(), 0, szwPersist );
384 HeapFree( GetProcessHeap(), 0, szwDBPath );
389 UINT WINAPI MsiOpenProductA(LPCSTR szProduct, MSIHANDLE *phProduct)
392 LPWSTR szwProd = NULL;
394 TRACE("%s %p\n",debugstr_a(szProduct), phProduct);
398 len = MultiByteToWideChar( CP_ACP, 0, szProduct, -1, NULL, 0 );
399 szwProd = HeapAlloc( GetProcessHeap(), 0, len * sizeof (WCHAR) );
401 MultiByteToWideChar( CP_ACP, 0, szProduct, -1, szwProd, len );
404 ret = MsiOpenProductW( szwProd, phProduct );
407 HeapFree( GetProcessHeap(), 0, szwProd );
412 UINT WINAPI MsiOpenProductW(LPCWSTR szProduct, MSIHANDLE *phProduct)
414 static const WCHAR szKey[] = {
415 'S','o','f','t','w','a','r','e','\\',
416 'M','i','c','r','o','s','o','f','t','\\',
417 'W','i','n','d','o','w','s','\\',
418 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
419 'U','n','i','n','s','t','a','l','l',0 };
420 static const WCHAR szLocalPackage[] = {
421 'L','o','c','a','l','P','a','c','k','a','g','e', 0
425 HKEY hKeyProduct = NULL, hKeyUninstall = NULL;
428 TRACE("%s %p\n",debugstr_w(szProduct), phProduct);
430 r = RegOpenKeyW( HKEY_LOCAL_MACHINE, szKey, &hKeyUninstall );
431 if( r != ERROR_SUCCESS )
432 return ERROR_UNKNOWN_PRODUCT;
434 r = RegOpenKeyW( hKeyUninstall, szProduct, &hKeyProduct );
435 if( r != ERROR_SUCCESS )
437 r = ERROR_UNKNOWN_PRODUCT;
441 /* find the size of the path */
443 r = RegQueryValueExW( hKeyProduct, szLocalPackage,
444 NULL, &type, NULL, &count );
445 if( r != ERROR_SUCCESS )
447 r = ERROR_UNKNOWN_PRODUCT;
451 /* now alloc and fetch the path of the database to open */
452 path = HeapAlloc( GetProcessHeap(), 0, count );
456 r = RegQueryValueExW( hKeyProduct, szLocalPackage,
457 NULL, &type, (LPBYTE) path, &count );
458 if( r != ERROR_SUCCESS )
460 r = ERROR_UNKNOWN_PRODUCT;
464 r = MsiOpenPackageW( path, phProduct );
468 HeapFree( GetProcessHeap(), 0, path );
470 RegCloseKey( hKeyProduct );
471 RegCloseKey( hKeyUninstall );
476 UINT WINAPI MsiAdvertiseProductA(LPCSTR szPackagePath, LPCSTR szScriptfilePath, LPCSTR szTransforms, LANGID lgidLanguage)
478 FIXME("%s %s %s 0x%08x\n",debugstr_a(szPackagePath), debugstr_a(szScriptfilePath), debugstr_a(szTransforms), lgidLanguage);
479 return ERROR_CALL_NOT_IMPLEMENTED;
482 UINT WINAPI MsiAdvertiseProductW(LPCWSTR szPackagePath, LPCWSTR szScriptfilePath, LPCWSTR szTransforms, LANGID lgidLanguage)
484 FIXME("%s %s %s 0x%08x\n",debugstr_w(szPackagePath), debugstr_w(szScriptfilePath), debugstr_w(szTransforms), lgidLanguage);
485 return ERROR_CALL_NOT_IMPLEMENTED;
488 UINT WINAPI MsiAdvertiseProductExA(LPCSTR szPackagePath, LPCSTR szScriptfilePath, LPCSTR szTransforms, LANGID lgidLanguage, DWORD dwPlatform, DWORD dwOptions)
490 FIXME("%s %s %s 0x%08x 0x%08lx 0x%08lx\n",
491 debugstr_a(szPackagePath), debugstr_a(szScriptfilePath), debugstr_a(szTransforms), lgidLanguage, dwPlatform, dwOptions);
492 return ERROR_CALL_NOT_IMPLEMENTED;
495 UINT WINAPI MsiAdvertiseProductExW( LPCWSTR szPackagePath, LPCWSTR szScriptfilePath, LPCWSTR szTransforms, LANGID lgidLanguage, DWORD dwPlatform, DWORD dwOptions)
497 FIXME("%s %s %s 0x%08x 0x%08lx 0x%08lx\n",
498 debugstr_w(szPackagePath), debugstr_w(szScriptfilePath), debugstr_w(szTransforms), lgidLanguage, dwPlatform, dwOptions);
499 return ERROR_CALL_NOT_IMPLEMENTED;
502 UINT WINAPI MsiInstallProductA(LPCSTR szPackagePath, LPCSTR szCommandLine)
504 LPWSTR szwPath = NULL, szwCommand = NULL;
505 UINT r = ERROR_FUNCTION_FAILED; /* FIXME: check return code */
507 TRACE("%s %s\n",debugstr_a(szPackagePath), debugstr_a(szCommandLine));
511 UINT len = MultiByteToWideChar( CP_ACP, 0, szPackagePath, -1, NULL, 0 );
512 szwPath = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
515 MultiByteToWideChar( CP_ACP, 0, szPackagePath, -1, szwPath, len );
520 UINT len = MultiByteToWideChar( CP_ACP, 0, szCommandLine, -1, NULL, 0 );
521 szwCommand = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
524 MultiByteToWideChar( CP_ACP, 0, szCommandLine, -1, szwCommand, len );
527 r = MsiInstallProductW( szwPath, szwCommand );
531 HeapFree( GetProcessHeap(), 0, szwPath );
534 HeapFree( GetProcessHeap(), 0, szwCommand );
539 UINT WINAPI MsiInstallProductW(LPCWSTR szPackagePath, LPCWSTR szCommandLine)
541 MSIPACKAGE *package = NULL;
542 UINT rc = ERROR_SUCCESS;
545 FIXME("%s %s\n",debugstr_w(szPackagePath), debugstr_w(szCommandLine));
547 rc = MsiVerifyPackageW(szPackagePath);
548 if (rc != ERROR_SUCCESS)
551 rc = MSI_OpenPackageW(szPackagePath,&package);
552 if (rc != ERROR_SUCCESS)
555 handle = alloc_msihandle( &package->hdr );
557 rc = ACTION_DoTopLevelINSTALL(package, szPackagePath, szCommandLine);
559 MsiCloseHandle(handle);
560 msiobj_release( &package->hdr );
564 UINT WINAPI MsiReinstallProductA(LPCSTR szProduct, DWORD dwReinstallMode)
566 FIXME("%s 0x%08lx\n", debugstr_a(szProduct), dwReinstallMode);
567 return ERROR_CALL_NOT_IMPLEMENTED;
570 UINT WINAPI MsiReinstallProductW(LPCWSTR szProduct, DWORD dwReinstallMode)
572 FIXME("%s 0x%08lx\n", debugstr_w(szProduct), dwReinstallMode);
573 return ERROR_CALL_NOT_IMPLEMENTED;
576 UINT WINAPI MsiApplyPatchA(LPCSTR szPatchPackage, LPCSTR szInstallPackage, INSTALLTYPE eInstallType, LPCSTR szCommandLine)
578 FIXME("%s %s %d %s\n", debugstr_a(szPatchPackage), debugstr_a(szInstallPackage), eInstallType, debugstr_a(szCommandLine));
579 return ERROR_CALL_NOT_IMPLEMENTED;
582 UINT WINAPI MsiApplyPatchW(LPCWSTR szPatchPackage, LPCWSTR szInstallPackage, INSTALLTYPE eInstallType, LPCWSTR szCommandLine)
584 FIXME("%s %s %d %s\n", debugstr_w(szPatchPackage), debugstr_w(szInstallPackage), eInstallType, debugstr_w(szCommandLine));
585 return ERROR_CALL_NOT_IMPLEMENTED;
588 UINT WINAPI MsiConfigureProductA(LPCSTR szProduct, int iInstallLevel, INSTALLSTATE eInstallState)
590 LPWSTR szwProduct = NULL;
591 UINT hr = ERROR_SUCCESS;
593 FIXME("%s %d %d\n",debugstr_a(szProduct), iInstallLevel, eInstallState);
597 UINT len = MultiByteToWideChar( CP_ACP, 0, szProduct, -1, NULL, 0 );
598 szwProduct = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
601 MultiByteToWideChar( CP_ACP, 0, szProduct, -1, szwProduct, len );
604 hr = MsiConfigureProductW( szwProduct, iInstallLevel, eInstallState );
608 HeapFree( GetProcessHeap(), 0, szwProduct );
613 UINT WINAPI MsiConfigureProductW(LPCWSTR szProduct, int iInstallLevel, INSTALLSTATE eInstallState)
615 FIXME("%s %d %d\n",debugstr_w(szProduct), iInstallLevel, eInstallState);
616 return ERROR_CALL_NOT_IMPLEMENTED;
619 UINT WINAPI MsiGetProductCodeA(LPCSTR szComponent, LPSTR szBuffer)
621 LPWSTR szwComponent = NULL, szwBuffer = NULL;
622 UINT hr = ERROR_INSTALL_FAILURE;
624 FIXME("%s %s\n",debugstr_a(szComponent), debugstr_a(szBuffer));
628 UINT len = MultiByteToWideChar( CP_ACP, 0, szComponent, -1, NULL, 0 );
629 szwComponent = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
632 MultiByteToWideChar( CP_ACP, 0, szComponent, -1, szwComponent, len );
634 return ERROR_INVALID_PARAMETER;
638 szwBuffer = HeapAlloc( GetProcessHeap(), 0, GUID_SIZE * sizeof(WCHAR) );
643 hr = MsiGetProductCodeW( szwComponent, szwBuffer );
645 if( ERROR_SUCCESS == hr )
647 WideCharToMultiByte(CP_ACP, 0, szwBuffer, -1, szBuffer, GUID_SIZE, NULL, NULL);
652 HeapFree( GetProcessHeap(), 0, szwComponent );
654 HeapFree( GetProcessHeap(), 0, szwBuffer );
659 UINT WINAPI MsiGetProductCodeW(LPCWSTR szComponent, LPWSTR szBuffer)
661 FIXME("%s %s\n",debugstr_w(szComponent), debugstr_w(szBuffer));
662 if (NULL == szComponent) {
663 return ERROR_INVALID_PARAMETER;
665 return ERROR_CALL_NOT_IMPLEMENTED;
671 UINT WINAPI MsiGetProductInfoA(LPCSTR szProduct, LPCSTR szAttribute, LPSTR szBuffer, DWORD *pcchValueBuf)
673 LPWSTR szwProduct = NULL, szwAttribute = NULL, szwBuffer = NULL;
674 UINT hr = ERROR_INSTALL_FAILURE;
676 FIXME("%s %s %p %p\n",debugstr_a(szProduct), debugstr_a(szAttribute), szBuffer, pcchValueBuf);
678 if (NULL != szBuffer && NULL == pcchValueBuf) {
679 return ERROR_INVALID_PARAMETER;
683 UINT len = MultiByteToWideChar( CP_ACP, 0, szProduct, -1, NULL, 0 );
684 szwProduct = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
687 MultiByteToWideChar( CP_ACP, 0, szProduct, -1, szwProduct, len );
689 return ERROR_INVALID_PARAMETER;
694 UINT len = MultiByteToWideChar( CP_ACP, 0, szAttribute, -1, NULL, 0 );
695 szwAttribute = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
698 MultiByteToWideChar( CP_ACP, 0, szAttribute, -1, szwAttribute, len );
700 return ERROR_INVALID_PARAMETER;
705 szwBuffer = HeapAlloc( GetProcessHeap(), 0, (*pcchValueBuf) * sizeof(WCHAR) );
710 hr = MsiGetProductInfoW( szwProduct, szwAttribute, szwBuffer, pcchValueBuf );
712 if( ERROR_SUCCESS == hr )
714 WideCharToMultiByte(CP_ACP, 0, szwBuffer, -1, szBuffer, *pcchValueBuf, NULL, NULL);
719 HeapFree( GetProcessHeap(), 0, szwProduct );
721 HeapFree( GetProcessHeap(), 0, szwAttribute );
723 HeapFree( GetProcessHeap(), 0, szwBuffer );
728 UINT WINAPI MsiGetProductInfoW(LPCWSTR szProduct, LPCWSTR szAttribute, LPWSTR szBuffer, DWORD *pcchValueBuf)
733 FIXME("%s %s %p %p\n",debugstr_w(szProduct), debugstr_w(szAttribute), szBuffer, pcchValueBuf);
735 if (NULL != szBuffer && NULL == pcchValueBuf) {
736 return ERROR_INVALID_PARAMETER;
738 if (NULL == szProduct || NULL == szAttribute) {
739 return ERROR_INVALID_PARAMETER;
742 hr = MsiOpenProductW(szProduct, &hProduct);
743 if (ERROR_SUCCESS != hr) return hr;
745 hr = MsiGetPropertyW(hProduct, szAttribute, szBuffer, pcchValueBuf);
746 MsiCloseHandle(hProduct);
750 UINT WINAPI MsiDatabaseImportA(LPCSTR szFolderPath, LPCSTR szFilename)
752 FIXME("%s %s\n",debugstr_a(szFolderPath), debugstr_a(szFilename));
753 return ERROR_CALL_NOT_IMPLEMENTED;
756 UINT WINAPI MsiDatabaseImportW(LPCWSTR szFolderPath, LPCWSTR szFilename)
758 FIXME("%s %s\n",debugstr_w(szFolderPath), debugstr_w(szFilename));
759 return ERROR_CALL_NOT_IMPLEMENTED;
762 UINT WINAPI MsiEnableLogA(DWORD dwLogMode, LPCSTR szLogFile, DWORD attributes)
764 LPWSTR szwLogFile = NULL;
765 UINT hr = ERROR_INSTALL_FAILURE;
767 FIXME("%08lx %s %08lx\n", dwLogMode, debugstr_a(szLogFile), attributes);
771 UINT len = MultiByteToWideChar( CP_ACP, 0, szLogFile, -1, NULL, 0 );
772 szwLogFile = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
775 MultiByteToWideChar( CP_ACP, 0, szLogFile, -1, szwLogFile, len );
777 return ERROR_INVALID_PARAMETER;
780 hr = MsiEnableLogW( dwLogMode, szwLogFile, attributes );
784 HeapFree( GetProcessHeap(), 0, szwLogFile );
789 UINT WINAPI MsiEnableLogW(DWORD dwLogMode, LPCWSTR szLogFile, DWORD attributes)
791 HANDLE the_file = INVALID_HANDLE_VALUE;
792 TRACE("%08lx %s %08lx\n", dwLogMode, debugstr_w(szLogFile), attributes);
793 strcpyW(gszLogFile,szLogFile);
794 if (!(attributes & INSTALLLOGATTRIBUTES_APPEND))
795 DeleteFileW(szLogFile);
796 the_file = CreateFileW(szLogFile, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS,
797 FILE_ATTRIBUTE_NORMAL, NULL);
798 if (the_file != INVALID_HANDLE_VALUE)
799 CloseHandle(the_file);
801 ERR("Unable to enable log %s\n",debugstr_w(szLogFile));
803 return ERROR_SUCCESS;
806 INSTALLSTATE WINAPI MsiQueryProductStateA(LPCSTR szProduct)
808 FIXME("%s\n", debugstr_a(szProduct));
809 return INSTALLSTATE_UNKNOWN;
812 INSTALLSTATE WINAPI MsiQueryProductStateW(LPCWSTR szProduct)
814 FIXME("%s\n", debugstr_w(szProduct));
815 return INSTALLSTATE_UNKNOWN;
818 INSTALLUILEVEL WINAPI MsiSetInternalUI(INSTALLUILEVEL dwUILevel, HWND *phWnd)
820 INSTALLUILEVEL old = gUILevel;
821 HWND oldwnd = gUIhwnd;
822 TRACE("%08x %p\n", dwUILevel, phWnd);
824 gUILevel = dwUILevel;
833 INSTALLUI_HANDLERA WINAPI MsiSetExternalUIA(INSTALLUI_HANDLERA puiHandler,
834 DWORD dwMessageFilter, LPVOID pvContext)
836 INSTALLUI_HANDLERA prev = gUIHandler;
838 TRACE("(%p %lx %p)\n",puiHandler,dwMessageFilter,pvContext);
839 gUIHandler = puiHandler;
840 gUIFilter = dwMessageFilter;
841 gUIContext = pvContext;
846 UINT WINAPI MsiLoadStringA(HINSTANCE hInstance, UINT uID, LPSTR lpBuffer, int nBufferMax, DWORD e)
848 /*FIXME("%08lx %08lx %08lx %08lx %08lx\n",a,b,c,d,e);*/
849 FIXME("%p %u %p %d %08lx\n",hInstance,uID,lpBuffer,nBufferMax,e);
850 return ERROR_CALL_NOT_IMPLEMENTED;
853 UINT WINAPI MsiLoadStringW(HINSTANCE hInstance, UINT uID, LPWSTR lpBuffer, int nBufferMax, DWORD e)
855 FIXME("%p %u %p %d %08lx\n",hInstance,uID,lpBuffer,nBufferMax,e);
857 int ret = LoadStringW(hInstance,uID,lpBuffer,nBufferMax);
858 FIXME("%s\n",debugstr_w(lpBuffer));
861 return ERROR_CALL_NOT_IMPLEMENTED;
864 INSTALLSTATE WINAPI MsiLocateComponentA(LPCSTR szComponent, LPSTR lpPathBuf, DWORD *pcchBuf)
866 FIXME("%s %p %08lx\n", debugstr_a(szComponent), lpPathBuf, *pcchBuf);
867 return INSTALLSTATE_UNKNOWN;
870 INSTALLSTATE WINAPI MsiLocateComponentW(LPCWSTR szComponent, LPSTR lpPathBuf, DWORD *pcchBuf)
872 FIXME("%s %p %08lx\n", debugstr_w(szComponent), lpPathBuf, *pcchBuf);
873 return INSTALLSTATE_UNKNOWN;
878 UINT WINAPI MsiMessageBoxA(HWND hWnd, LPCSTR lpText, LPCSTR lpCaption, UINT uType, WORD wLanguageId, DWORD f)
880 FIXME("%p %s %s %u %08x %08lx\n",hWnd,debugstr_a(lpText),debugstr_a(lpCaption),uType,wLanguageId,f);
882 MessageBoxExA(hWnd,lpText,lpCaption,uType|MB_OK,wLanguageId);
884 return ERROR_CALL_NOT_IMPLEMENTED;
887 UINT WINAPI MsiMessageBoxW(HWND hWnd, LPCWSTR lpText, LPCWSTR lpCaption, UINT uType, WORD wLanguageId, DWORD f)
889 /*FIXME("%08lx %08lx %08lx %08lx %08lx %08lx\n",a,b,c,d,e,f);*/
890 FIXME("%p %s %s %u %08x %08lx\n",hWnd,debugstr_w(lpText),debugstr_w(lpCaption),uType,wLanguageId,f);
892 MessageBoxExW(hWnd,lpText,lpCaption,uType|MB_OK,wLanguageId);
894 return ERROR_CALL_NOT_IMPLEMENTED;
897 UINT WINAPI MsiEnumProductsA(DWORD index, LPSTR lpguid)
900 WCHAR szwGuid[GUID_SIZE];
902 TRACE("%ld %p\n",index,lpguid);
904 if (NULL == lpguid) {
905 return ERROR_INVALID_PARAMETER;
907 r = MsiEnumProductsW(index, szwGuid);
908 if( r == ERROR_SUCCESS )
909 WideCharToMultiByte(CP_ACP, 0, szwGuid, -1, lpguid, GUID_SIZE, NULL, NULL);
914 UINT WINAPI MsiEnumProductsW(DWORD index, LPWSTR lpguid)
916 HKEY hkey = 0, hkeyFeatures = 0;
920 TRACE("%ld %p\n",index,lpguid);
922 if (NULL == lpguid) {
923 return ERROR_INVALID_PARAMETER;
925 r = RegOpenKeyW(HKEY_LOCAL_MACHINE, szInstaller, &hkey);
926 if( r != ERROR_SUCCESS )
929 r = RegOpenKeyW(hkey, szFeatures, &hkeyFeatures);
930 if( r != ERROR_SUCCESS )
933 r = RegEnumKeyW(hkeyFeatures, index, szKeyName, GUID_SIZE);
935 unsquash_guid(szKeyName, lpguid);
940 RegCloseKey(hkeyFeatures);
947 UINT WINAPI MsiEnumFeaturesA(LPCSTR szProduct, DWORD index,
948 LPSTR szFeature, LPSTR szParent)
951 WCHAR szwFeature[GUID_SIZE], szwParent[GUID_SIZE];
952 LPWSTR szwProduct = NULL;
954 TRACE("%s %ld %p %p\n",debugstr_a(szProduct),index,szFeature,szParent);
958 UINT len = MultiByteToWideChar( CP_ACP, 0, szProduct, -1, NULL, 0 );
959 szwProduct = HeapAlloc( GetProcessHeap(), 0, len * sizeof (WCHAR) );
961 MultiByteToWideChar( CP_ACP, 0, szProduct, -1, szwProduct, len );
963 return ERROR_FUNCTION_FAILED;
966 r = MsiEnumFeaturesW(szwProduct, index, szwFeature, szwParent);
967 if( r == ERROR_SUCCESS )
969 WideCharToMultiByte(CP_ACP, 0, szwFeature, -1,
970 szFeature, GUID_SIZE, NULL, NULL);
971 WideCharToMultiByte(CP_ACP, 0, szwParent, -1,
972 szParent, GUID_SIZE, NULL, NULL);
976 HeapFree( GetProcessHeap(), 0, szwProduct);
981 UINT WINAPI MsiEnumFeaturesW(LPCWSTR szProduct, DWORD index,
982 LPWSTR szFeature, LPWSTR szParent)
984 HKEY hkey = 0, hkeyFeatures = 0, hkeyProduct = 0;
986 WCHAR szRegName[GUID_SIZE];
988 TRACE("%s %ld %p %p\n",debugstr_w(szProduct),index,szFeature,szParent);
990 if( !squash_guid(szProduct, szRegName) )
991 return ERROR_INVALID_PARAMETER;
993 r = RegOpenKeyW(HKEY_LOCAL_MACHINE, szInstaller, &hkey);
994 if( r != ERROR_SUCCESS )
997 r = RegOpenKeyW(hkey, szFeatures, &hkeyFeatures);
998 if( r != ERROR_SUCCESS )
1001 r = RegOpenKeyW(hkeyFeatures, szRegName, &hkeyProduct);
1002 if( r != ERROR_SUCCESS )
1006 r = RegEnumValueW(hkeyProduct, index, szFeature, &sz, NULL, NULL, NULL, NULL);
1010 RegCloseKey(hkeyProduct);
1012 RegCloseKey(hkeyFeatures);
1019 UINT WINAPI MsiEnumComponentsA(DWORD index, LPSTR lpguid)
1022 WCHAR szwGuid[GUID_SIZE];
1024 TRACE("%ld %p\n",index,lpguid);
1026 r = MsiEnumComponentsW(index, szwGuid);
1027 if( r == ERROR_SUCCESS )
1028 WideCharToMultiByte(CP_ACP, 0, szwGuid, -1, lpguid, GUID_SIZE, NULL, NULL);
1033 UINT WINAPI MsiEnumComponentsW(DWORD index, LPWSTR lpguid)
1035 HKEY hkey = 0, hkeyComponents = 0;
1037 WCHAR szKeyName[33];
1039 TRACE("%ld %p\n",index,lpguid);
1041 r = RegOpenKeyW(HKEY_LOCAL_MACHINE, szInstaller, &hkey);
1042 if( r != ERROR_SUCCESS )
1045 r = RegOpenKeyW(hkey, szComponents, &hkeyComponents);
1046 if( r != ERROR_SUCCESS )
1049 r = RegEnumKeyW(hkeyComponents, index, szKeyName, GUID_SIZE);
1051 unsquash_guid(szKeyName, lpguid);
1055 if( hkeyComponents )
1056 RegCloseKey(hkeyComponents);
1063 UINT WINAPI MsiEnumClientsA(LPCSTR szComponent, DWORD index, LPSTR szProduct)
1066 WCHAR szwProduct[GUID_SIZE];
1067 LPWSTR szwComponent = NULL;
1069 TRACE("%s %ld %p\n",debugstr_a(szComponent),index,szProduct);
1073 UINT len = MultiByteToWideChar( CP_ACP, 0, szComponent, -1, NULL, 0 );
1074 szwComponent = HeapAlloc( GetProcessHeap(), 0, len * sizeof (WCHAR) );
1076 MultiByteToWideChar( CP_ACP, 0, szComponent, -1, szwComponent, len );
1078 return ERROR_FUNCTION_FAILED;
1081 r = MsiEnumClientsW(szComponent?szwComponent:NULL, index, szwProduct);
1082 if( r == ERROR_SUCCESS )
1084 WideCharToMultiByte(CP_ACP, 0, szwProduct, -1,
1085 szProduct, GUID_SIZE, NULL, NULL);
1089 HeapFree( GetProcessHeap(), 0, szwComponent);
1094 UINT WINAPI MsiEnumClientsW(LPCWSTR szComponent, DWORD index, LPWSTR szProduct)
1096 HKEY hkey = 0, hkeyComponents = 0, hkeyComp = 0;
1098 WCHAR szRegName[GUID_SIZE], szValName[GUID_SIZE];
1100 TRACE("%s %ld %p\n",debugstr_w(szComponent),index,szProduct);
1102 if( !squash_guid(szComponent, szRegName) )
1103 return ERROR_INVALID_PARAMETER;
1105 r = RegOpenKeyW(HKEY_LOCAL_MACHINE, szInstaller, &hkey);
1106 if( r != ERROR_SUCCESS )
1109 r = RegOpenKeyW(hkey, szComponents, &hkeyComponents);
1110 if( r != ERROR_SUCCESS )
1113 r = RegOpenKeyW(hkeyComponents, szRegName, &hkeyComp);
1114 if( r != ERROR_SUCCESS )
1118 r = RegEnumValueW(hkeyComp, index, szValName, &sz, NULL, NULL, NULL, NULL);
1119 if( r != ERROR_SUCCESS )
1122 unsquash_guid(szValName, szProduct);
1126 RegCloseKey(hkeyComp);
1127 if( hkeyComponents )
1128 RegCloseKey(hkeyComponents);
1135 UINT WINAPI MsiEnumComponentQualifiersA(
1136 LPSTR szComponent, DWORD iIndex, LPSTR lpQualifierBuf, DWORD* pcchQualifierBuf, LPSTR lpApplicationDataBuf, DWORD* pcchApplicationDataBuf)
1138 FIXME("%s 0x%08lx %p %p %p %p\n", debugstr_a(szComponent), iIndex, lpQualifierBuf, pcchQualifierBuf, lpApplicationDataBuf, pcchApplicationDataBuf);
1139 return ERROR_CALL_NOT_IMPLEMENTED;
1142 UINT WINAPI MsiEnumComponentQualifiersW(
1143 LPWSTR szComponent, DWORD iIndex, LPWSTR lpQualifierBuf, DWORD* pcchQualifierBuf, LPWSTR lpApplicationDataBuf, DWORD* pcchApplicationDataBuf)
1145 FIXME("%s 0x%08lx %p %p %p %p\n", debugstr_w(szComponent), iIndex, lpQualifierBuf, pcchQualifierBuf, lpApplicationDataBuf, pcchApplicationDataBuf);
1146 return ERROR_CALL_NOT_IMPLEMENTED;
1149 UINT WINAPI MsiProvideAssemblyA(
1150 LPCSTR szAssemblyName, LPCSTR szAppContext, DWORD dwInstallMode, DWORD dwAssemblyInfo, LPSTR lpPathBuf, DWORD* pcchPathBuf)
1152 FIXME("%s %s 0x%08lx 0x%08lx %p %p\n",
1153 debugstr_a(szAssemblyName), debugstr_a(szAppContext), dwInstallMode, dwAssemblyInfo, lpPathBuf, pcchPathBuf);
1154 return ERROR_CALL_NOT_IMPLEMENTED;
1157 UINT WINAPI MsiProvideAssemblyW(
1158 LPCWSTR szAssemblyName, LPCWSTR szAppContext, DWORD dwInstallMode, DWORD dwAssemblyInfo, LPWSTR lpPathBuf, DWORD* pcchPathBuf)
1160 FIXME("%s %s 0x%08lx 0x%08lx %p %p\n",
1161 debugstr_w(szAssemblyName), debugstr_w(szAppContext), dwInstallMode, dwAssemblyInfo, lpPathBuf, pcchPathBuf);
1162 return ERROR_CALL_NOT_IMPLEMENTED;
1165 UINT WINAPI MsiProvideComponentFromDescriptorA( LPCSTR szDescriptor, LPSTR szPath, DWORD *pcchPath, DWORD *pcchArgs )
1167 FIXME("%s %p %p %p\n", debugstr_a(szDescriptor), szPath, pcchPath, pcchArgs );
1168 return ERROR_CALL_NOT_IMPLEMENTED;
1171 UINT WINAPI MsiProvideComponentFromDescriptorW( LPCWSTR szDescriptor, LPWSTR szPath, DWORD *pcchPath, DWORD *pcchArgs )
1173 FIXME("%s %p %p %p\n", debugstr_w(szDescriptor), szPath, pcchPath, pcchArgs );
1174 return ERROR_CALL_NOT_IMPLEMENTED;
1177 HRESULT WINAPI MsiGetFileSignatureInformationA(
1178 LPCSTR szSignedObjectPath, DWORD dwFlags, PCCERT_CONTEXT* ppcCertContext, BYTE* pbHashData, DWORD* pcbHashData)
1180 FIXME("%s 0x%08lx %p %p %p\n", debugstr_a(szSignedObjectPath), dwFlags, ppcCertContext, pbHashData, pcbHashData);
1181 return ERROR_CALL_NOT_IMPLEMENTED;
1184 HRESULT WINAPI MsiGetFileSignatureInformationW(
1185 LPCWSTR szSignedObjectPath, DWORD dwFlags, PCCERT_CONTEXT* ppcCertContext, BYTE* pbHashData, DWORD* pcbHashData)
1187 FIXME("%s 0x%08lx %p %p %p\n", debugstr_w(szSignedObjectPath), dwFlags, ppcCertContext, pbHashData, pcbHashData);
1188 return ERROR_CALL_NOT_IMPLEMENTED;
1191 UINT WINAPI MsiGetProductPropertyA( MSIHANDLE hProduct, LPCSTR szProperty,
1192 LPSTR szValue, DWORD *pccbValue )
1194 FIXME("%ld %s %p %p\n", hProduct, debugstr_a(szProperty), szValue, pccbValue);
1195 return ERROR_CALL_NOT_IMPLEMENTED;
1198 UINT WINAPI MsiGetProductPropertyW( MSIHANDLE hProduct, LPCWSTR szProperty,
1199 LPWSTR szValue, DWORD *pccbValue )
1201 FIXME("%ld %s %p %p\n", hProduct, debugstr_w(szProperty), szValue, pccbValue);
1202 return ERROR_CALL_NOT_IMPLEMENTED;
1205 UINT WINAPI MsiVerifyPackageA( LPCSTR szPackage )
1208 LPWSTR szPack = NULL;
1210 TRACE("%s\n", debugstr_a(szPackage) );
1214 len = MultiByteToWideChar( CP_ACP, 0, szPackage, -1, NULL, 0 );
1215 szPack = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
1217 return ERROR_OUTOFMEMORY;
1218 MultiByteToWideChar( CP_ACP, 0, szPackage, -1, szPack, len );
1221 r = MsiVerifyPackageW( szPack );
1223 HeapFree( GetProcessHeap(), 0, szPack );
1228 UINT WINAPI MsiVerifyPackageW( LPCWSTR szPackage )
1233 TRACE("%s\n", debugstr_w(szPackage) );
1235 r = MsiOpenDatabaseW( szPackage, MSIDBOPEN_READONLY, &handle );
1236 MsiCloseHandle( handle );
1241 INSTALLSTATE WINAPI MsiGetComponentPathA(LPCSTR szProduct, LPCSTR szComponent,
1242 LPSTR lpPathBuf, DWORD* pcchBuf)
1246 LPWSTR szwProduct= NULL;
1247 LPWSTR szwComponent= NULL;
1248 LPWSTR lpwPathBuf= NULL;
1252 len = MultiByteToWideChar( CP_ACP, 0, szProduct, -1, NULL, 0 );
1253 szwProduct= HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
1255 return ERROR_OUTOFMEMORY;
1256 MultiByteToWideChar( CP_ACP, 0, szProduct, -1, szwProduct, len );
1261 len = MultiByteToWideChar( CP_ACP, 0, szComponent, -1, NULL, 0 );
1262 szwComponent= HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
1264 return ERROR_OUTOFMEMORY;
1265 MultiByteToWideChar( CP_ACP, 0, szComponent, -1, szwComponent, len );
1268 if (pcchBuf && *pcchBuf > 0)
1269 lpwPathBuf = HeapAlloc( GetProcessHeap(), 0, *pcchBuf * sizeof(WCHAR));
1273 rc = MsiGetComponentPathW(szwProduct, szwComponent, lpwPathBuf, pcchBuf);
1275 HeapFree( GetProcessHeap(), 0, szwProduct);
1276 HeapFree( GetProcessHeap(), 0, szwComponent);
1279 WideCharToMultiByte(CP_ACP, 0, lpwPathBuf, *pcchBuf,
1280 lpPathBuf, GUID_SIZE, NULL, NULL);
1281 HeapFree( GetProcessHeap(), 0, lpwPathBuf);
1287 INSTALLSTATE WINAPI MsiGetComponentPathW(LPCWSTR szProduct, LPCWSTR szComponent,
1288 LPWSTR lpPathBuf, DWORD* pcchBuf)
1290 FIXME("STUB: (%s %s %p %p)\n", debugstr_w(szProduct),
1291 debugstr_w(szComponent), lpPathBuf, pcchBuf);
1293 return INSTALLSTATE_UNKNOWN;
1296 INSTALLSTATE WINAPI MsiQueryFeatureStateA(LPCSTR szProduct, LPCSTR szFeature)
1300 LPWSTR szwProduct= NULL;
1301 LPWSTR szwFeature= NULL;
1305 len = MultiByteToWideChar( CP_ACP, 0, szProduct, -1, NULL, 0 );
1306 szwProduct= HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
1308 return ERROR_OUTOFMEMORY;
1309 MultiByteToWideChar( CP_ACP, 0, szProduct, -1, szwProduct, len );
1314 len = MultiByteToWideChar( CP_ACP, 0, szFeature, -1, NULL, 0 );
1315 szwFeature= HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
1317 return ERROR_OUTOFMEMORY;
1318 MultiByteToWideChar( CP_ACP, 0, szFeature, -1, szwFeature, len );
1321 rc = MsiQueryFeatureStateW(szwProduct, szwFeature);
1323 HeapFree( GetProcessHeap(), 0, szwProduct);
1324 HeapFree( GetProcessHeap(), 0, szwFeature);
1329 INSTALLSTATE WINAPI MsiQueryFeatureStateW(LPCWSTR szProduct, LPCWSTR szFeature)
1331 FIXME("STUB: (%s %s)\n", debugstr_w(szProduct), debugstr_w(szFeature));
1332 return INSTALLSTATE_UNKNOWN;
1336 /******************************************************************
1339 * @todo: maybe we can check here if MsiServer service is declared no ?
1341 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) {
1342 if (fdwReason == DLL_PROCESS_ATTACH) {
1343 DisableThreadLibraryCalls(hinstDLL);
1347 gUILevel = INSTALLUILEVEL_BASIC;
1353 /* FIXME: Initialisation */
1354 } else if (fdwReason == DLL_PROCESS_DETACH) {
1355 /* FIXME: Cleanup */
1358 static const WCHAR szMSIServerSvc[] = { 'M','S','I','S','e','r','v','e','r',0 };
1359 static const WCHAR szNull[] = { 0 };
1360 if (!strcmpW(lpServiceName, szMSIServerSvc)) {
1361 hKey = CreateServiceW(hSCManager,
1364 SC_MANAGER_ALL_ACCESS,
1365 SERVICE_WIN32_OWN_PROCESS|SERVICE_INTERACTIVE_PROCESS,
1367 SERVICE_ERROR_IGNORE,
1379 /* IUnknown fields */
1380 ICOM_VFIELD(IClassFactory);
1382 } IClassFactoryImpl;
1384 static HRESULT WINAPI MsiCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
1385 ICOM_THIS(IClassFactoryImpl,iface);
1386 FIXME("(%p, %s, %p): stub\n",This,debugstr_guid(riid),ppobj);
1387 return E_NOINTERFACE;
1390 static ULONG WINAPI MsiCF_AddRef(LPCLASSFACTORY iface) {
1391 ICOM_THIS(IClassFactoryImpl,iface);
1392 return ++(This->ref);
1395 static ULONG WINAPI MsiCF_Release(LPCLASSFACTORY iface) {
1396 ICOM_THIS(IClassFactoryImpl,iface);
1397 /* static class, won't be freed */
1398 return --(This->ref);
1401 static HRESULT WINAPI MsiCF_CreateInstance(LPCLASSFACTORY iface, LPUNKNOWN pOuter, REFIID riid, LPVOID *ppobj) {
1402 ICOM_THIS(IClassFactoryImpl,iface);
1403 FIXME ("(%p, %p, %s, %p): to implement\n", This, pOuter, debugstr_guid(riid), ppobj);
1407 static HRESULT WINAPI MsiCF_LockServer(LPCLASSFACTORY iface,BOOL dolock) {
1408 ICOM_THIS(IClassFactoryImpl,iface);
1409 FIXME("(%p, %d): stub\n", This, dolock);
1413 static ICOM_VTABLE(IClassFactory) MsiCF_Vtbl = {
1414 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
1415 MsiCF_QueryInterface,
1418 MsiCF_CreateInstance,
1422 static IClassFactoryImpl Msi_CF = {&MsiCF_Vtbl, 1 };
1424 /******************************************************************
1425 * DllGetClassObject (MSI.@)
1427 HRESULT WINAPI MSI_DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv) {
1428 FIXME("(%s, %s, %p): almost a stub.\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
1429 if (IsEqualCLSID (rclsid, &CLSID_IMsiServer)) {
1430 *ppv = (LPVOID) &Msi_CF;
1431 IClassFactory_AddRef((IClassFactory*)*ppv);
1433 } else if (IsEqualCLSID (rclsid, &CLSID_IMsiServerMessage)) {
1434 *ppv = (LPVOID) &Msi_CF;
1435 IClassFactory_AddRef((IClassFactory*)*ppv);
1437 } else if (IsEqualCLSID (rclsid, &CLSID_IMsiServerX1)) {
1438 *ppv = (LPVOID) &Msi_CF;
1439 IClassFactory_AddRef((IClassFactory*)*ppv);
1441 } else if (IsEqualCLSID (rclsid, &CLSID_IMsiServerX2)) {
1442 *ppv = (LPVOID) &Msi_CF;
1443 IClassFactory_AddRef((IClassFactory*)*ppv);
1445 } else if (IsEqualCLSID (rclsid, &CLSID_IMsiServerX3)) {
1446 *ppv = (LPVOID) &Msi_CF;
1447 IClassFactory_AddRef((IClassFactory*)*ppv);
1450 WARN("(%s, %s, %p): no interface found.\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
1451 return CLASS_E_CLASSNOTAVAILABLE;
1454 /******************************************************************
1455 * DllGetVersion (MSI.@)
1457 HRESULT WINAPI MSI_DllGetVersion(DLLVERSIONINFO *pdvi)
1461 if (pdvi->cbSize != sizeof(DLLVERSIONINFO))
1462 return E_INVALIDARG;
1464 pdvi->dwMajorVersion = MSI_MAJORVERSION;
1465 pdvi->dwMinorVersion = MSI_MINORVERSION;
1466 pdvi->dwBuildNumber = MSI_BUILDNUMBER;
1467 pdvi->dwPlatformID = 1;
1472 /******************************************************************
1473 * DllCanUnloadNow (MSI.@)
1475 BOOL WINAPI MSI_DllCanUnloadNow(void)
1480 UINT WINAPI MsiEnumRelatedProductsA (LPCSTR lpUpgradeCode, DWORD dwReserved,
1481 DWORD iProductIndex, LPSTR lpProductBuf)
1483 FIXME("STUB: (%s, %li %li %s)\n",lpUpgradeCode, dwReserved, iProductIndex,
1485 return ERROR_CALL_NOT_IMPLEMENTED;