quartz: Play silence in directsound renderer on end of stream notification.
[wine] / dlls / msi / package.c
1 /*
2  * Implementation of the Microsoft Installer (msi.dll)
3  *
4  * Copyright 2004 Aric Stewart for CodeWeavers
5  *
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.
10  *
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.
15  *
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #define NONAMELESSUNION
22 #define NONAMELESSSTRUCT
23 #define COBJMACROS
24
25 #include <stdarg.h>
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winreg.h"
29 #include "winnls.h"
30 #include "shlwapi.h"
31 #include "wingdi.h"
32 #include "wine/debug.h"
33 #include "msi.h"
34 #include "msiquery.h"
35 #include "objidl.h"
36 #include "wincrypt.h"
37 #include "winuser.h"
38 #include "wininet.h"
39 #include "winver.h"
40 #include "urlmon.h"
41 #include "shlobj.h"
42 #include "wine/unicode.h"
43 #include "objbase.h"
44 #include "msidefs.h"
45 #include "sddl.h"
46
47 #include "msipriv.h"
48 #include "msiserver.h"
49
50 WINE_DEFAULT_DEBUG_CHANNEL(msi);
51
52 static void MSI_FreePackage( MSIOBJECTHDR *arg)
53 {
54     MSIPACKAGE *package= (MSIPACKAGE*) arg;
55
56     if( package->dialog )
57         msi_dialog_destroy( package->dialog );
58
59     msiobj_release( &package->db->hdr );
60     ACTION_free_package_structures(package);
61 }
62
63 static UINT create_temp_property_table(MSIPACKAGE *package)
64 {
65     MSIQUERY *view = NULL;
66     UINT rc;
67
68     static const WCHAR CreateSql[] = {
69        'C','R','E','A','T','E',' ','T','A','B','L','E',' ','`','_','P','r','o',
70        'p','e','r','t','y','`',' ','(',' ','`','_','P','r','o','p','e','r','t',
71        'y','`',' ','C','H','A','R','(','5','6',')',' ','N','O','T',' ','N','U',
72        'L','L',' ','T','E','M','P','O','R','A','R','Y',',',' ','`','V','a','l',
73        'u','e','`',' ','C','H','A','R','(','9','8',')',' ','N','O','T',' ','N',
74        'U','L','L',' ','T','E','M','P','O','R','A','R','Y',' ','P','R','I','M',
75        'A','R','Y',' ','K','E','Y',' ','`','_','P','r','o','p','e','r','t','y',
76         '`',')',0};
77
78     rc = MSI_DatabaseOpenViewW(package->db, CreateSql, &view);
79     if (rc != ERROR_SUCCESS)
80         return rc;
81
82     rc = MSI_ViewExecute(view, 0);
83     MSI_ViewClose(view);
84     msiobj_release(&view->hdr);
85     return rc;
86 }
87
88 UINT msi_clone_properties(MSIPACKAGE *package)
89 {
90     MSIQUERY *view = NULL;
91     UINT rc;
92
93     static const WCHAR Query[] = {
94        'S','E','L','E','C','T',' ','*',' ',
95        'F','R','O','M',' ','`','P','r','o','p','e','r','t','y','`',0};
96     static const WCHAR Insert[] = {
97        'I','N','S','E','R','T',' ','i','n','t','o',' ',
98        '`','_','P','r','o','p','e','r','t','y','`',' ',
99        '(','`','_','P','r','o','p','e','r','t','y','`',',',
100        '`','V','a','l','u','e','`',')',' ',
101        'V','A','L','U','E','S',' ','(','?',',','?',')',0};
102
103     /* clone the existing properties */
104     rc = MSI_DatabaseOpenViewW(package->db, Query, &view);
105     if (rc != ERROR_SUCCESS)
106         return rc;
107
108     rc = MSI_ViewExecute(view, 0);
109     if (rc != ERROR_SUCCESS)
110     {
111         MSI_ViewClose(view);
112         msiobj_release(&view->hdr);
113         return rc;
114     }
115
116     while (1)
117     {
118         MSIRECORD *row;
119         MSIQUERY *view2;
120
121         rc = MSI_ViewFetch(view, &row);
122         if (rc != ERROR_SUCCESS)
123             break;
124
125         rc = MSI_DatabaseOpenViewW(package->db, Insert, &view2);
126         if (rc != ERROR_SUCCESS)
127         {
128             msiobj_release(&row->hdr);
129             continue;
130         }
131
132         MSI_ViewExecute(view2, row);
133         MSI_ViewClose(view2);
134         msiobj_release(&view2->hdr);
135         msiobj_release(&row->hdr);
136     }
137
138     MSI_ViewClose(view);
139     msiobj_release(&view->hdr);
140
141     return rc;
142 }
143
144 /*
145  * set_installed_prop
146  *
147  * Sets the "Installed" property to indicate that
148  *  the product is installed for the current user.
149  */
150 static UINT set_installed_prop( MSIPACKAGE *package )
151 {
152     static const WCHAR szInstalled[] = {
153         'I','n','s','t','a','l','l','e','d',0 };
154     WCHAR val[2] = { '1', 0 };
155     HKEY hkey = 0;
156     UINT r;
157
158     r = MSIREG_OpenUninstallKey( package->ProductCode, &hkey, FALSE );
159     if (r == ERROR_SUCCESS)
160     {
161         RegCloseKey( hkey );
162         MSI_SetPropertyW( package, szInstalled, val );
163     }
164
165     return r;
166 }
167
168 static UINT set_user_sid_prop( MSIPACKAGE *package )
169 {
170     SID_NAME_USE use;
171     LPWSTR user_name;
172     LPWSTR sid_str = NULL, dom = NULL;
173     DWORD size, dom_size;
174     PSID psid = NULL;
175     UINT r = ERROR_FUNCTION_FAILED;
176
177     static const WCHAR user_sid[] = {'U','s','e','r','S','I','D',0};
178
179     size = 0;
180     GetUserNameW( NULL, &size );
181
182     user_name = msi_alloc( (size + 1) * sizeof(WCHAR) );
183     if (!user_name)
184         return ERROR_OUTOFMEMORY;
185
186     if (!GetUserNameW( user_name, &size ))
187         goto done;
188
189     size = 0;
190     dom_size = 0;
191     LookupAccountNameW( NULL, user_name, NULL, &size, NULL, &dom_size, &use );
192
193     psid = msi_alloc( size );
194     dom = msi_alloc( dom_size*sizeof (WCHAR) );
195     if (!psid || !dom)
196     {
197         r = ERROR_OUTOFMEMORY;
198         goto done;
199     }
200
201     if (!LookupAccountNameW( NULL, user_name, psid, &size, dom, &dom_size, &use ))
202         goto done;
203
204     if (!ConvertSidToStringSidW( psid, &sid_str ))
205         goto done;
206
207     r = MSI_SetPropertyW( package, user_sid, sid_str );
208
209 done:
210     LocalFree( sid_str );
211     msi_free( dom );
212     msi_free( psid );
213     msi_free( user_name );
214
215     return r;
216 }
217
218 static LPWSTR get_fusion_filename(MSIPACKAGE *package)
219 {
220     HKEY netsetup;
221     LONG res;
222     LPWSTR file;
223     DWORD index = 0, size;
224     WCHAR ver[MAX_PATH];
225     WCHAR name[MAX_PATH];
226     WCHAR windir[MAX_PATH];
227
228     static const WCHAR backslash[] = {'\\',0};
229     static const WCHAR fusion[] = {'f','u','s','i','o','n','.','d','l','l',0};
230     static const WCHAR sub[] = {
231         'S','o','f','t','w','a','r','e','\\',
232         'M','i','c','r','o','s','o','f','t','\\',
233         'N','E','T',' ','F','r','a','m','e','w','o','r','k',' ','S','e','t','u','p','\\',
234         'N','D','P',0
235     };
236     static const WCHAR subdir[] = {
237         'M','i','c','r','o','s','o','f','t','.','N','E','T','\\',
238         'F','r','a','m','e','w','o','r','k','\\',0
239     };
240
241     res = RegOpenKeyExW(HKEY_LOCAL_MACHINE, sub, 0, KEY_ENUMERATE_SUB_KEYS, &netsetup);
242     if (res != ERROR_SUCCESS)
243         return NULL;
244
245     ver[0] = '\0';
246     size = MAX_PATH;
247     while (RegEnumKeyExW(netsetup, index, name, &size, NULL, NULL, NULL, NULL) == ERROR_SUCCESS)
248     {
249         index++;
250         if (lstrcmpW(ver, name) < 0)
251             lstrcpyW(ver, name);
252     }
253
254     RegCloseKey(netsetup);
255
256     if (!index)
257         return NULL;
258
259     GetWindowsDirectoryW(windir, MAX_PATH);
260
261     size = lstrlenW(windir) + lstrlenW(subdir) + lstrlenW(ver) +lstrlenW(fusion) + 3;
262     file = msi_alloc(size * sizeof(WCHAR));
263     if (!file)
264         return NULL;
265
266     lstrcpyW(file, windir);
267     lstrcatW(file, backslash);
268     lstrcatW(file, subdir);
269     lstrcatW(file, ver);
270     lstrcatW(file, backslash);
271     lstrcatW(file, fusion);
272
273     return file;
274 }
275
276 typedef struct tagLANGANDCODEPAGE
277 {
278   WORD wLanguage;
279   WORD wCodePage;
280 } LANGANDCODEPAGE;
281
282 static void set_msi_assembly_prop(MSIPACKAGE *package)
283 {
284     UINT val_len;
285     DWORD size, handle;
286     LPVOID version = NULL;
287     WCHAR buf[MAX_PATH];
288     LPWSTR fusion, verstr;
289     LANGANDCODEPAGE *translate;
290
291     static const WCHAR netasm[] = {
292         'M','s','i','N','e','t','A','s','s','e','m','b','l','y','S','u','p','p','o','r','t',0
293     };
294     static const WCHAR translation[] = {
295         '\\','V','a','r','F','i','l','e','I','n','f','o',
296         '\\','T','r','a','n','s','l','a','t','i','o','n',0
297     };
298     static const WCHAR verfmt[] = {
299         '\\','S','t','r','i','n','g','F','i','l','e','I','n','f','o',
300         '\\','%','0','4','x','%','0','4','x',
301         '\\','P','r','o','d','u','c','t','V','e','r','s','i','o','n',0
302     };
303
304     fusion = get_fusion_filename(package);
305     if (!fusion)
306         return;
307
308     size = GetFileVersionInfoSizeW(fusion, &handle);
309     if (!size) return;
310
311     version = msi_alloc(size);
312     if (!version) return;
313
314     if (!GetFileVersionInfoW(fusion, handle, size, version))
315         goto done;
316
317     if (!VerQueryValueW(version, translation, (LPVOID *)&translate, &val_len))
318         goto done;
319
320     sprintfW(buf, verfmt, translate[0].wLanguage, translate[0].wCodePage);
321
322     if (!VerQueryValueW(version, buf, (LPVOID *)&verstr, &val_len))
323         goto done;
324
325     if (!val_len || !verstr)
326         goto done;
327
328     MSI_SetPropertyW(package, netasm, verstr);
329
330 done:
331     msi_free(fusion);
332     msi_free(version);
333 }
334
335 static VOID set_installer_properties(MSIPACKAGE *package)
336 {
337     WCHAR pth[MAX_PATH];
338     WCHAR *ptr;
339     OSVERSIONINFOEXW OSVersion;
340     MEMORYSTATUSEX msex;
341     DWORD verval;
342     WCHAR verstr[10], bufstr[20];
343     HDC dc;
344     HKEY hkey;
345     LPWSTR username, companyname;
346     SYSTEM_INFO sys_info;
347     SYSTEMTIME systemtime;
348     LANGID langid;
349
350     static const WCHAR cszbs[]={'\\',0};
351     static const WCHAR CFF[] = 
352 {'C','o','m','m','o','n','F','i','l','e','s','F','o','l','d','e','r',0};
353     static const WCHAR PFF[] = 
354 {'P','r','o','g','r','a','m','F','i','l','e','s','F','o','l','d','e','r',0};
355     static const WCHAR CADF[] = 
356 {'C','o','m','m','o','n','A','p','p','D','a','t','a','F','o','l','d','e','r',0};
357     static const WCHAR FaF[] = 
358 {'F','a','v','o','r','i','t','e','s','F','o','l','d','e','r',0};
359     static const WCHAR FoF[] = 
360 {'F','o','n','t','s','F','o','l','d','e','r',0};
361     static const WCHAR SendTF[] = 
362 {'S','e','n','d','T','o','F','o','l','d','e','r',0};
363     static const WCHAR SMF[] = 
364 {'S','t','a','r','t','M','e','n','u','F','o','l','d','e','r',0};
365     static const WCHAR StF[] = 
366 {'S','t','a','r','t','u','p','F','o','l','d','e','r',0};
367     static const WCHAR TemplF[] = 
368 {'T','e','m','p','l','a','t','e','F','o','l','d','e','r',0};
369     static const WCHAR DF[] = 
370 {'D','e','s','k','t','o','p','F','o','l','d','e','r',0};
371     static const WCHAR PMF[] = 
372 {'P','r','o','g','r','a','m','M','e','n','u','F','o','l','d','e','r',0};
373     static const WCHAR ATF[] = 
374 {'A','d','m','i','n','T','o','o','l','s','F','o','l','d','e','r',0};
375     static const WCHAR ADF[] = 
376 {'A','p','p','D','a','t','a','F','o','l','d','e','r',0};
377     static const WCHAR SF[] = 
378 {'S','y','s','t','e','m','F','o','l','d','e','r',0};
379     static const WCHAR SF16[] = 
380 {'S','y','s','t','e','m','1','6','F','o','l','d','e','r',0};
381     static const WCHAR LADF[] = 
382 {'L','o','c','a','l','A','p','p','D','a','t','a','F','o','l','d','e','r',0};
383     static const WCHAR MPF[] = 
384 {'M','y','P','i','c','t','u','r','e','s','F','o','l','d','e','r',0};
385     static const WCHAR PF[] = 
386 {'P','e','r','s','o','n','a','l','F','o','l','d','e','r',0};
387     static const WCHAR WF[] = 
388 {'W','i','n','d','o','w','s','F','o','l','d','e','r',0};
389     static const WCHAR WV[] = 
390 {'W','i','n','d','o','w','s','V','o','l','u','m','e',0};
391     static const WCHAR TF[]=
392 {'T','e','m','p','F','o','l','d','e','r',0};
393     static const WCHAR szAdminUser[] =
394 {'A','d','m','i','n','U','s','e','r',0};
395     static const WCHAR szPriv[] =
396 {'P','r','i','v','i','l','e','g','e','d',0};
397     static const WCHAR szOne[] =
398 {'1',0};
399     static const WCHAR v9x[] = { 'V','e','r','s','i','o','n','9','X',0 };
400     static const WCHAR vNT[] = { 'V','e','r','s','i','o','n','N','T',0 };
401     static const WCHAR szMsiNTProductType[] = { 'M','s','i','N','T','P','r','o','d','u','c','t','T','y','p','e',0 };
402     static const WCHAR szFormat[] = {'%','l','i',0};
403     static const WCHAR szWinBuild[] =
404 {'W','i','n','d','o','w','s','B','u','i','l','d', 0 };
405     static const WCHAR szSPL[] = 
406 {'S','e','r','v','i','c','e','P','a','c','k','L','e','v','e','l',0 };
407     static const WCHAR szSix[] = {'6',0 };
408
409     static const WCHAR szVersionMsi[] = { 'V','e','r','s','i','o','n','M','s','i',0 };
410     static const WCHAR szVersionDatabase[] = { 'V','e','r','s','i','o','n','D','a','t','a','b','a','s','e',0 };
411     static const WCHAR szPhysicalMemory[] = { 'P','h','y','s','i','c','a','l','M','e','m','o','r','y',0 };
412     static const WCHAR szFormat2[] = {'%','l','i','.','%','l','i',0};
413 /* Screen properties */
414     static const WCHAR szScreenX[] = {'S','c','r','e','e','n','X',0};
415     static const WCHAR szScreenY[] = {'S','c','r','e','e','n','Y',0};
416     static const WCHAR szColorBits[] = {'C','o','l','o','r','B','i','t','s',0};
417     static const WCHAR szIntFormat[] = {'%','d',0};
418     static const WCHAR szIntel[] = { 'I','n','t','e','l',0 };
419     static const WCHAR szAllUsers[] = { 'A','L','L','U','S','E','R','S',0 };
420     static const WCHAR szUserInfo[] = {
421         'S','O','F','T','W','A','R','E','\\',
422         'M','i','c','r','o','s','o','f','t','\\',
423         'M','S',' ','S','e','t','u','p',' ','(','A','C','M','E',')','\\',
424         'U','s','e','r',' ','I','n','f','o',0
425     };
426     static const WCHAR szDefName[] = { 'D','e','f','N','a','m','e',0 };
427     static const WCHAR szDefCompany[] = { 'D','e','f','C','o','m','p','a','n','y',0 };
428     static const WCHAR szCurrentVersion[] = {
429         'S','O','F','T','W','A','R','E','\\',
430         'M','i','c','r','o','s','o','f','t','\\',
431         'W','i','n','d','o','w','s',' ','N','T','\\',
432         'C','u','r','r','e','n','t','V','e','r','s','i','o','n',0
433     };
434     static const WCHAR szRegisteredUser[] = {'R','e','g','i','s','t','e','r','e','d','O','w','n','e','r',0};
435     static const WCHAR szRegisteredOrg[] = {
436         'R','e','g','i','s','t','e','r','e','d','O','r','g','a','n','i','z','a','t','i','o','n',0
437     };
438     static const WCHAR szUSERNAME[] = {'U','S','E','R','N','A','M','E',0};
439     static const WCHAR szCOMPANYNAME[] = {'C','O','M','P','A','N','Y','N','A','M','E',0};
440     static const WCHAR szDate[] = {'D','a','t','e',0};
441     static const WCHAR szTime[] = {'T','i','m','e',0};
442     static const WCHAR szUserLangID[] = {'U','s','e','r','L','a','n','g','u','a','g','e','I','D',0};
443
444     /*
445      * Other things that probably should be set:
446      *
447      * SystemLanguageID ComputerName UserLanguageID LogonUser VirtualMemory
448      * ShellAdvSupport DefaultUIFont PackagecodeChanging
449      * ProductState CaptionHeight BorderTop BorderSide TextHeight
450      * RedirectedDllSupport
451      */
452
453     SHGetFolderPathW(NULL,CSIDL_PROGRAM_FILES_COMMON,NULL,0,pth);
454     strcatW(pth,cszbs);
455     MSI_SetPropertyW(package, CFF, pth);
456
457     SHGetFolderPathW(NULL,CSIDL_PROGRAM_FILES,NULL,0,pth);
458     strcatW(pth,cszbs);
459     MSI_SetPropertyW(package, PFF, pth);
460
461     SHGetFolderPathW(NULL,CSIDL_COMMON_APPDATA,NULL,0,pth);
462     strcatW(pth,cszbs);
463     MSI_SetPropertyW(package, CADF, pth);
464
465     SHGetFolderPathW(NULL,CSIDL_FAVORITES,NULL,0,pth);
466     strcatW(pth,cszbs);
467     MSI_SetPropertyW(package, FaF, pth);
468
469     SHGetFolderPathW(NULL,CSIDL_FONTS,NULL,0,pth);
470     strcatW(pth,cszbs);
471     MSI_SetPropertyW(package, FoF, pth);
472
473     SHGetFolderPathW(NULL,CSIDL_SENDTO,NULL,0,pth);
474     strcatW(pth,cszbs);
475     MSI_SetPropertyW(package, SendTF, pth);
476
477     SHGetFolderPathW(NULL,CSIDL_STARTMENU,NULL,0,pth);
478     strcatW(pth,cszbs);
479     MSI_SetPropertyW(package, SMF, pth);
480
481     SHGetFolderPathW(NULL,CSIDL_STARTUP,NULL,0,pth);
482     strcatW(pth,cszbs);
483     MSI_SetPropertyW(package, StF, pth);
484
485     SHGetFolderPathW(NULL,CSIDL_TEMPLATES,NULL,0,pth);
486     strcatW(pth,cszbs);
487     MSI_SetPropertyW(package, TemplF, pth);
488
489     SHGetFolderPathW(NULL,CSIDL_DESKTOP,NULL,0,pth);
490     strcatW(pth,cszbs);
491     MSI_SetPropertyW(package, DF, pth);
492
493     SHGetFolderPathW(NULL,CSIDL_PROGRAMS,NULL,0,pth);
494     strcatW(pth,cszbs);
495     MSI_SetPropertyW(package, PMF, pth);
496
497     SHGetFolderPathW(NULL,CSIDL_ADMINTOOLS,NULL,0,pth);
498     strcatW(pth,cszbs);
499     MSI_SetPropertyW(package, ATF, pth);
500
501     SHGetFolderPathW(NULL,CSIDL_APPDATA,NULL,0,pth);
502     strcatW(pth,cszbs);
503     MSI_SetPropertyW(package, ADF, pth);
504
505     SHGetFolderPathW(NULL,CSIDL_SYSTEM,NULL,0,pth);
506     strcatW(pth,cszbs);
507     MSI_SetPropertyW(package, SF, pth);
508     MSI_SetPropertyW(package, SF16, pth);
509
510     SHGetFolderPathW(NULL,CSIDL_LOCAL_APPDATA,NULL,0,pth);
511     strcatW(pth,cszbs);
512     MSI_SetPropertyW(package, LADF, pth);
513
514     SHGetFolderPathW(NULL,CSIDL_MYPICTURES,NULL,0,pth);
515     strcatW(pth,cszbs);
516     MSI_SetPropertyW(package, MPF, pth);
517
518     SHGetFolderPathW(NULL,CSIDL_PERSONAL,NULL,0,pth);
519     strcatW(pth,cszbs);
520     MSI_SetPropertyW(package, PF, pth);
521
522     SHGetFolderPathW(NULL,CSIDL_WINDOWS,NULL,0,pth);
523     strcatW(pth,cszbs);
524     MSI_SetPropertyW(package, WF, pth);
525     
526     /* Physical Memory is specified in MB. Using total amount. */
527     msex.dwLength = sizeof(msex);
528     GlobalMemoryStatusEx( &msex );
529     sprintfW( bufstr, szIntFormat, (int)(msex.ullTotalPhys/1024/1024));
530     MSI_SetPropertyW(package, szPhysicalMemory, bufstr);
531
532     SHGetFolderPathW(NULL,CSIDL_WINDOWS,NULL,0,pth);
533     ptr = strchrW(pth,'\\');
534     if (ptr)
535         *(ptr+1) = 0;
536     MSI_SetPropertyW(package, WV, pth);
537     
538     GetTempPathW(MAX_PATH,pth);
539     MSI_SetPropertyW(package, TF, pth);
540
541
542     /* in a wine environment the user is always admin and privileged */
543     MSI_SetPropertyW(package,szAdminUser,szOne);
544     MSI_SetPropertyW(package,szPriv,szOne);
545     MSI_SetPropertyW(package, szAllUsers, szOne);
546
547     /* set the os things */
548     OSVersion.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEXW);
549     GetVersionExW((OSVERSIONINFOW *)&OSVersion);
550     verval = OSVersion.dwMinorVersion+OSVersion.dwMajorVersion*100;
551     sprintfW(verstr,szFormat,verval);
552     switch (OSVersion.dwPlatformId)
553     {
554         case VER_PLATFORM_WIN32_WINDOWS:    
555             MSI_SetPropertyW(package,v9x,verstr);
556             break;
557         case VER_PLATFORM_WIN32_NT:
558             MSI_SetPropertyW(package,vNT,verstr);
559             sprintfW(verstr,szFormat,OSVersion.wProductType);
560             MSI_SetPropertyW(package,szMsiNTProductType,verstr);
561             break;
562     }
563     sprintfW(verstr,szFormat,OSVersion.dwBuildNumber);
564     MSI_SetPropertyW(package,szWinBuild,verstr);
565     /* just fudge this */
566     MSI_SetPropertyW(package,szSPL,szSix);
567
568     sprintfW( bufstr, szFormat2, MSI_MAJORVERSION, MSI_MINORVERSION);
569     MSI_SetPropertyW( package, szVersionMsi, bufstr );
570     sprintfW( bufstr, szFormat, MSI_MAJORVERSION * 100);
571     MSI_SetPropertyW( package, szVersionDatabase, bufstr );
572
573     GetSystemInfo( &sys_info );
574     if (sys_info.u.s.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_INTEL)
575     {
576         sprintfW( bufstr, szIntFormat, sys_info.wProcessorLevel );
577         MSI_SetPropertyW( package, szIntel, bufstr );
578     }
579
580     /* Screen properties. */
581     dc = GetDC(0);
582     sprintfW( bufstr, szIntFormat, GetDeviceCaps( dc, HORZRES ) );
583     MSI_SetPropertyW( package, szScreenX, bufstr );
584     sprintfW( bufstr, szIntFormat, GetDeviceCaps( dc, VERTRES ));
585     MSI_SetPropertyW( package, szScreenY, bufstr );
586     sprintfW( bufstr, szIntFormat, GetDeviceCaps( dc, BITSPIXEL ));
587     MSI_SetPropertyW( package, szColorBits, bufstr );
588     ReleaseDC(0, dc);
589
590     /* USERNAME and COMPANYNAME */
591     username = msi_dup_property( package, szUSERNAME );
592     companyname = msi_dup_property( package, szCOMPANYNAME );
593
594     if ((!username || !companyname) &&
595         RegOpenKeyW( HKEY_CURRENT_USER, szUserInfo, &hkey ) == ERROR_SUCCESS)
596     {
597         if (!username &&
598             (username = msi_reg_get_val_str( hkey, szDefName )))
599             MSI_SetPropertyW( package, szUSERNAME, username );
600         if (!companyname &&
601             (companyname = msi_reg_get_val_str( hkey, szDefCompany )))
602             MSI_SetPropertyW( package, szCOMPANYNAME, companyname );
603         CloseHandle( hkey );
604     }
605     if ((!username || !companyname) &&
606         RegOpenKeyW( HKEY_LOCAL_MACHINE, szCurrentVersion, &hkey ) == ERROR_SUCCESS)
607     {
608         if (!username &&
609             (username = msi_reg_get_val_str( hkey, szRegisteredUser )))
610             MSI_SetPropertyW( package, szUSERNAME, username );
611         if (!companyname &&
612             (companyname = msi_reg_get_val_str( hkey, szRegisteredOrg )))
613             MSI_SetPropertyW( package, szCOMPANYNAME, companyname );
614         CloseHandle( hkey );
615     }
616     msi_free( username );
617     msi_free( companyname );
618
619     if ( set_user_sid_prop( package ) != ERROR_SUCCESS)
620         ERR("Failed to set the UserSID property\n");
621
622     /* Date and time properties */
623     GetSystemTime( &systemtime );
624     if (GetDateFormatW( LOCALE_USER_DEFAULT, DATE_SHORTDATE, &systemtime,
625                         NULL, bufstr, sizeof(bufstr)/sizeof(bufstr[0]) ))
626         MSI_SetPropertyW( package, szDate, bufstr );
627     else
628         ERR("Couldn't set Date property: GetDateFormat failed with error %d\n", GetLastError());
629
630     if (GetTimeFormatW( LOCALE_USER_DEFAULT,
631                         TIME_FORCE24HOURFORMAT | TIME_NOTIMEMARKER,
632                         &systemtime, NULL, bufstr,
633                         sizeof(bufstr)/sizeof(bufstr[0]) ))
634         MSI_SetPropertyW( package, szTime, bufstr );
635     else
636         ERR("Couldn't set Time property: GetTimeFormat failed with error %d\n", GetLastError());
637
638     set_msi_assembly_prop( package );
639
640     langid = GetUserDefaultLangID();
641     sprintfW(bufstr, szIntFormat, langid);
642
643     MSI_SetPropertyW( package, szUserLangID, bufstr );
644 }
645
646 static UINT msi_load_summary_properties( MSIPACKAGE *package )
647 {
648     UINT rc;
649     MSIHANDLE suminfo;
650     MSIHANDLE hdb = alloc_msihandle( &package->db->hdr );
651     INT count;
652     DWORD len;
653     LPWSTR package_code;
654     static const WCHAR szPackageCode[] = {
655         'P','a','c','k','a','g','e','C','o','d','e',0};
656
657     if (!hdb) {
658         ERR("Unable to allocate handle\n");
659         return ERROR_OUTOFMEMORY;
660     }
661
662     rc = MsiGetSummaryInformationW( hdb, NULL, 0, &suminfo );
663     MsiCloseHandle(hdb);
664     if (rc != ERROR_SUCCESS)
665     {
666         ERR("Unable to open Summary Information\n");
667         return rc;
668     }
669
670     rc = MsiSummaryInfoGetPropertyW( suminfo, PID_PAGECOUNT, NULL,
671                                      &count, NULL, NULL, NULL );
672     if (rc != ERROR_SUCCESS)
673     {
674         WARN("Unable to query page count: %d\n", rc);
675         goto done;
676     }
677
678     /* load package code property */
679     len = 0;
680     rc = MsiSummaryInfoGetPropertyW( suminfo, PID_REVNUMBER, NULL,
681                                      NULL, NULL, NULL, &len );
682     if (rc != ERROR_MORE_DATA)
683     {
684         WARN("Unable to query revision number: %d\n", rc);
685         rc = ERROR_FUNCTION_FAILED;
686         goto done;
687     }
688
689     len++;
690     package_code = msi_alloc( len * sizeof(WCHAR) );
691     rc = MsiSummaryInfoGetPropertyW( suminfo, PID_REVNUMBER, NULL,
692                                      NULL, NULL, package_code, &len );
693     if (rc != ERROR_SUCCESS)
694     {
695         WARN("Unable to query rev number: %d\n", rc);
696         goto done;
697     }
698
699     MSI_SetPropertyW( package, szPackageCode, package_code );
700     msi_free( package_code );
701
702     /* load package attributes */
703     count = 0;
704     MsiSummaryInfoGetPropertyW( suminfo, PID_WORDCOUNT, NULL,
705                                 &count, NULL, NULL, NULL );
706     package->WordCount = count;
707
708 done:
709     MsiCloseHandle(suminfo);
710     return rc;
711 }
712
713 static MSIPACKAGE *msi_alloc_package( void )
714 {
715     MSIPACKAGE *package;
716
717     package = alloc_msiobject( MSIHANDLETYPE_PACKAGE, sizeof (MSIPACKAGE),
718                                MSI_FreePackage );
719     if( package )
720     {
721         list_init( &package->components );
722         list_init( &package->features );
723         list_init( &package->files );
724         list_init( &package->tempfiles );
725         list_init( &package->folders );
726         list_init( &package->subscriptions );
727         list_init( &package->appids );
728         list_init( &package->classes );
729         list_init( &package->mimes );
730         list_init( &package->extensions );
731         list_init( &package->progids );
732         list_init( &package->RunningActions );
733         list_init( &package->sourcelist_info );
734         list_init( &package->sourcelist_media );
735
736         package->ActionFormat = NULL;
737         package->LastAction = NULL;
738         package->dialog = NULL;
739         package->next_dialog = NULL;
740         package->scheduled_action_running = FALSE;
741         package->commit_action_running = FALSE;
742         package->rollback_action_running = FALSE;
743     }
744
745     return package;
746 }
747
748 static UINT msi_load_admin_properties(MSIPACKAGE *package)
749 {
750     BYTE *data;
751     UINT r, sz;
752
753     static const WCHAR stmname[] = {'A','d','m','i','n','P','r','o','p','e','r','t','i','e','s',0};
754
755     r = read_stream_data(package->db->storage, stmname, FALSE, &data, &sz);
756     if (r != ERROR_SUCCESS)
757         return r;
758
759     r = msi_parse_command_line(package, (WCHAR *)data);
760
761     msi_free(data);
762     return r;
763 }
764
765 MSIPACKAGE *MSI_CreatePackage( MSIDATABASE *db, LPCWSTR base_url )
766 {
767     static const WCHAR szLevel[] = { 'U','I','L','e','v','e','l',0 };
768     static const WCHAR szpi[] = {'%','i',0};
769     static const WCHAR szProductCode[] = {
770         'P','r','o','d','u','c','t','C','o','d','e',0};
771     MSIPACKAGE *package;
772     WCHAR uilevel[10];
773     UINT r;
774
775     TRACE("%p\n", db);
776
777     package = msi_alloc_package();
778     if (package)
779     {
780         msiobj_addref( &db->hdr );
781         package->db = db;
782
783         package->WordCount = 0;
784         package->PackagePath = strdupW( db->path );
785         package->BaseURL = strdupW( base_url );
786
787         create_temp_property_table( package );
788         msi_clone_properties( package );
789         set_installer_properties(package);
790         sprintfW(uilevel,szpi,gUILevel);
791         MSI_SetPropertyW(package, szLevel, uilevel);
792
793         package->ProductCode = msi_dup_property( package, szProductCode );
794         set_installed_prop( package );
795         r = msi_load_summary_properties( package );
796         if (r != ERROR_SUCCESS)
797         {
798             msiobj_release( &package->hdr );
799             return NULL;
800         }
801
802         if (package->WordCount & MSIWORDCOUNT_ADMINISTRATIVE)
803             msi_load_admin_properties( package );
804     }
805
806     return package;
807 }
808
809 /*
810  * copy_package_to_temp   [internal]
811  *
812  * copy the msi file to a temp file to prevent locking a CD
813  * with a multi disc install 
814  *
815  * FIXME: I think this is wrong, and instead of copying the package,
816  *        we should read all the tables to memory, then open the
817  *        database to read binary streams on demand.
818  */ 
819 static LPCWSTR copy_package_to_temp( LPCWSTR szPackage, LPWSTR filename )
820 {
821     WCHAR path[MAX_PATH];
822     static const WCHAR szMSI[] = {'m','s','i',0};
823
824     GetTempPathW( MAX_PATH, path );
825     GetTempFileNameW( path, szMSI, 0, filename );
826
827     if( !CopyFileW( szPackage, filename, FALSE ) )
828     {
829         DeleteFileW( filename );
830         ERR("failed to copy package %s\n", debugstr_w(szPackage) );
831         return szPackage;
832     }
833
834     TRACE("Opening relocated package %s\n", debugstr_w( filename ));
835     return filename;
836 }
837
838 LPCWSTR msi_download_file( LPCWSTR szUrl, LPWSTR filename )
839 {
840     LPINTERNET_CACHE_ENTRY_INFOW cache_entry;
841     DWORD size = 0;
842     HRESULT hr;
843
844     /* call will always fail, becase size is 0,
845      * but will return ERROR_FILE_NOT_FOUND first
846      * if the file doesn't exist
847      */
848     GetUrlCacheEntryInfoW( szUrl, NULL, &size );
849     if ( GetLastError() != ERROR_FILE_NOT_FOUND )
850     {
851         cache_entry = HeapAlloc( GetProcessHeap(), 0, size );
852         if ( !GetUrlCacheEntryInfoW( szUrl, cache_entry, &size ) )
853         {
854             HeapFree( GetProcessHeap(), 0, cache_entry );
855             return szUrl;
856         }
857
858         lstrcpyW( filename, cache_entry->lpszLocalFileName );
859         HeapFree( GetProcessHeap(), 0, cache_entry );
860         return filename;
861     }
862
863     hr = URLDownloadToCacheFileW( NULL, szUrl, filename, MAX_PATH, 0, NULL );
864     if ( FAILED(hr) )
865         return szUrl;
866
867     return filename;
868 }
869
870 UINT MSI_OpenPackageW(LPCWSTR szPackage, MSIPACKAGE **pPackage)
871 {
872     static const WCHAR OriginalDatabase[] =
873         {'O','r','i','g','i','n','a','l','D','a','t','a','b','a','s','e',0};
874     static const WCHAR Database[] = {'D','A','T','A','B','A','S','E',0};
875     MSIDATABASE *db = NULL;
876     MSIPACKAGE *package;
877     MSIHANDLE handle;
878     LPWSTR ptr, base_url = NULL;
879     UINT r;
880     WCHAR temppath[MAX_PATH];
881     LPCWSTR file = szPackage;
882
883     TRACE("%s %p\n", debugstr_w(szPackage), pPackage);
884
885     if( szPackage[0] == '#' )
886     {
887         handle = atoiW(&szPackage[1]);
888         db = msihandle2msiinfo( handle, MSIHANDLETYPE_DATABASE );
889         if( !db )
890         {
891             IWineMsiRemoteDatabase *remote_database;
892
893             remote_database = (IWineMsiRemoteDatabase *)msi_get_remote( handle );
894             if ( !remote_database )
895                 return ERROR_INVALID_HANDLE;
896
897             IWineMsiRemoteDatabase_Release( remote_database );
898             WARN("MsiOpenPackage not allowed during a custom action!\n");
899
900             return ERROR_FUNCTION_FAILED;
901         }
902     }
903     else
904     {
905         if ( UrlIsW( szPackage, URLIS_URL ) )
906         {
907             file = msi_download_file( szPackage, temppath );
908
909             base_url = strdupW( szPackage );
910             if ( !base_url )
911                 return ERROR_OUTOFMEMORY;
912
913             ptr = strrchrW( base_url, '/' );
914             if (ptr) *(ptr + 1) = '\0';
915         }
916         else
917             file = copy_package_to_temp( szPackage, temppath );
918
919         r = MSI_OpenDatabaseW( file, MSIDBOPEN_READONLY, &db );
920         if( r != ERROR_SUCCESS )
921         {
922             if (file != szPackage)
923                 DeleteFileW( file );
924
925             if (GetFileAttributesW(szPackage) == INVALID_FILE_ATTRIBUTES)
926                 return ERROR_FILE_NOT_FOUND;
927
928             return r;
929         }
930     }
931
932     package = MSI_CreatePackage( db, base_url );
933     msi_free( base_url );
934     msiobj_release( &db->hdr );
935     if( !package )
936     {
937         if (file != szPackage)
938             DeleteFileW( file );
939
940         return ERROR_INSTALL_PACKAGE_INVALID;
941     }
942
943     if( file != szPackage )
944         track_tempfile( package, file );
945
946     MSI_SetPropertyW( package, Database, db->path );
947
948     if( UrlIsW( szPackage, URLIS_URL ) )
949         MSI_SetPropertyW( package, OriginalDatabase, szPackage );
950     else if( szPackage[0] == '#' )
951         MSI_SetPropertyW( package, OriginalDatabase, db->path );
952     else
953     {
954         WCHAR fullpath[MAX_PATH];
955
956         GetFullPathNameW( szPackage, MAX_PATH, fullpath, NULL );
957         MSI_SetPropertyW( package, OriginalDatabase, fullpath );
958     }
959
960     *pPackage = package;
961
962     return ERROR_SUCCESS;
963 }
964
965 UINT WINAPI MsiOpenPackageExW(LPCWSTR szPackage, DWORD dwOptions, MSIHANDLE *phPackage)
966 {
967     MSIPACKAGE *package = NULL;
968     UINT ret;
969
970     TRACE("%s %08x %p\n", debugstr_w(szPackage), dwOptions, phPackage );
971
972     if( !szPackage || !phPackage )
973         return ERROR_INVALID_PARAMETER;
974
975     if ( !*szPackage )
976     {
977         FIXME("Should create an empty database and package\n");
978         return ERROR_FUNCTION_FAILED;
979     }
980
981     if( dwOptions )
982         FIXME("dwOptions %08x not supported\n", dwOptions);
983
984     ret = MSI_OpenPackageW( szPackage, &package );
985     if( ret == ERROR_SUCCESS )
986     {
987         *phPackage = alloc_msihandle( &package->hdr );
988         if (! *phPackage)
989             ret = ERROR_NOT_ENOUGH_MEMORY;
990         msiobj_release( &package->hdr );
991     }
992
993     return ret;
994 }
995
996 UINT WINAPI MsiOpenPackageW(LPCWSTR szPackage, MSIHANDLE *phPackage)
997 {
998     return MsiOpenPackageExW( szPackage, 0, phPackage );
999 }
1000
1001 UINT WINAPI MsiOpenPackageExA(LPCSTR szPackage, DWORD dwOptions, MSIHANDLE *phPackage)
1002 {
1003     LPWSTR szwPack = NULL;
1004     UINT ret;
1005
1006     if( szPackage )
1007     {
1008         szwPack = strdupAtoW( szPackage );
1009         if( !szwPack )
1010             return ERROR_OUTOFMEMORY;
1011     }
1012
1013     ret = MsiOpenPackageExW( szwPack, dwOptions, phPackage );
1014
1015     msi_free( szwPack );
1016
1017     return ret;
1018 }
1019
1020 UINT WINAPI MsiOpenPackageA(LPCSTR szPackage, MSIHANDLE *phPackage)
1021 {
1022     return MsiOpenPackageExA( szPackage, 0, phPackage );
1023 }
1024
1025 MSIHANDLE WINAPI MsiGetActiveDatabase(MSIHANDLE hInstall)
1026 {
1027     MSIPACKAGE *package;
1028     MSIHANDLE handle = 0;
1029     IWineMsiRemotePackage *remote_package;
1030
1031     TRACE("(%ld)\n",hInstall);
1032
1033     package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE);
1034     if( package)
1035     {
1036         handle = alloc_msihandle( &package->db->hdr );
1037         msiobj_release( &package->hdr );
1038     }
1039     else if ((remote_package = (IWineMsiRemotePackage *)msi_get_remote( hInstall )))
1040     {
1041         IWineMsiRemotePackage_GetActiveDatabase(remote_package, &handle);
1042         IWineMsiRemotePackage_Release(remote_package);
1043     }
1044
1045     return handle;
1046 }
1047
1048 INT MSI_ProcessMessage( MSIPACKAGE *package, INSTALLMESSAGE eMessageType,
1049                                MSIRECORD *record)
1050 {
1051     static const WCHAR szActionData[] =
1052         {'A','c','t','i','o','n','D','a','t','a',0};
1053     static const WCHAR szSetProgress[] =
1054         {'S','e','t','P','r','o','g','r','e','s','s',0};
1055     static const WCHAR szActionText[] =
1056         {'A','c','t','i','o','n','T','e','x','t',0};
1057     DWORD log_type = 0;
1058     LPWSTR message;
1059     DWORD sz;
1060     DWORD total_size = 0;
1061     INT i;
1062     INT rc;
1063     char *msg;
1064     int len;
1065
1066     TRACE("%x\n", eMessageType);
1067     rc = 0;
1068
1069     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ERROR)
1070         log_type |= INSTALLLOGMODE_ERROR;
1071     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_WARNING)
1072         log_type |= INSTALLLOGMODE_WARNING;
1073     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_USER)
1074         log_type |= INSTALLLOGMODE_USER;
1075     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_INFO)
1076         log_type |= INSTALLLOGMODE_INFO;
1077     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_COMMONDATA)
1078         log_type |= INSTALLLOGMODE_COMMONDATA;
1079     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ACTIONSTART)
1080         log_type |= INSTALLLOGMODE_ACTIONSTART;
1081     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ACTIONDATA)
1082         log_type |= INSTALLLOGMODE_ACTIONDATA;
1083     /* just a guess */
1084     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_PROGRESS)
1085         log_type |= 0x800;
1086
1087     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ACTIONSTART)
1088     {
1089         static const WCHAR template_s[]=
1090             {'A','c','t','i','o','n',' ','%','s',':',' ','%','s','.',' ',0};
1091         static const WCHAR format[] = 
1092             {'H','H','\'',':','\'','m','m','\'',':','\'','s','s',0};
1093         WCHAR timet[0x100];
1094         LPCWSTR action_text, action;
1095         LPWSTR deformatted = NULL;
1096
1097         GetTimeFormatW(LOCALE_USER_DEFAULT, 0, NULL, format, timet, 0x100);
1098
1099         action = MSI_RecordGetString(record, 1);
1100         action_text = MSI_RecordGetString(record, 2);
1101
1102         if (!action || !action_text)
1103             return IDOK;
1104
1105         deformat_string(package, action_text, &deformatted);
1106
1107         len = strlenW(timet) + strlenW(action) + strlenW(template_s);
1108         if (deformatted)
1109             len += strlenW(deformatted);
1110         message = msi_alloc(len*sizeof(WCHAR));
1111         sprintfW(message, template_s, timet, action);
1112         if (deformatted)
1113             strcatW(message, deformatted);
1114         msi_free(deformatted);
1115     }
1116     else
1117     {
1118         INT msg_field=1;
1119         message = msi_alloc(1*sizeof (WCHAR));
1120         message[0]=0;
1121         msg_field = MSI_RecordGetFieldCount(record);
1122         for (i = 1; i <= msg_field; i++)
1123         {
1124             LPWSTR tmp;
1125             WCHAR number[3];
1126             static const WCHAR format[] = { '%','i',':',' ',0};
1127             static const WCHAR space[] = { ' ',0};
1128             sz = 0;
1129             MSI_RecordGetStringW(record,i,NULL,&sz);
1130             sz+=4;
1131             total_size+=sz*sizeof(WCHAR);
1132             tmp = msi_alloc(sz*sizeof(WCHAR));
1133             message = msi_realloc(message,total_size*sizeof (WCHAR));
1134
1135             MSI_RecordGetStringW(record,i,tmp,&sz);
1136
1137             if (msg_field > 1)
1138             {
1139                 sprintfW(number,format,i);
1140                 strcatW(message,number);
1141             }
1142             strcatW(message,tmp);
1143             if (msg_field > 1)
1144                 strcatW(message,space);
1145
1146             msi_free(tmp);
1147         }
1148     }
1149
1150     TRACE("(%p %x %x %s)\n", gUIHandlerA, gUIFilter, log_type,
1151                              debugstr_w(message));
1152
1153     /* convert it to ASCII */
1154     len = WideCharToMultiByte( CP_ACP, 0, message, -1,
1155                                NULL, 0, NULL, NULL );
1156     msg = msi_alloc( len );
1157     WideCharToMultiByte( CP_ACP, 0, message, -1,
1158                          msg, len, NULL, NULL );
1159
1160     if (gUIHandlerA && (gUIFilter & log_type))
1161     {
1162         rc = gUIHandlerA(gUIContext,eMessageType,msg);
1163     }
1164
1165     if ((!rc) && (gszLogFile[0]) && !((eMessageType & 0xff000000) ==
1166                                       INSTALLMESSAGE_PROGRESS))
1167     {
1168         DWORD write;
1169         HANDLE log_file = CreateFileW(gszLogFile,GENERIC_WRITE, 0, NULL,
1170                                   OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
1171
1172         if (log_file != INVALID_HANDLE_VALUE)
1173         {
1174             SetFilePointer(log_file,0, NULL, FILE_END);
1175             WriteFile(log_file,msg,strlen(msg),&write,NULL);
1176             WriteFile(log_file,"\n",1,&write,NULL);
1177             CloseHandle(log_file);
1178         }
1179     }
1180     msi_free( msg );
1181
1182     msi_free( message);
1183
1184     switch (eMessageType & 0xff000000)
1185     {
1186     case INSTALLMESSAGE_ACTIONDATA:
1187         /* FIXME: format record here instead of in ui_actiondata to get the
1188          * correct action data for external scripts */
1189         ControlEvent_FireSubscribedEvent(package, szActionData, record);
1190         break;
1191     case INSTALLMESSAGE_ACTIONSTART:
1192     {
1193         MSIRECORD *uirow;
1194         LPWSTR deformated;
1195         LPCWSTR action_text = MSI_RecordGetString(record, 2);
1196
1197         deformat_string(package, action_text, &deformated);
1198         uirow = MSI_CreateRecord(1);
1199         MSI_RecordSetStringW(uirow, 1, deformated);
1200         TRACE("INSTALLMESSAGE_ACTIONSTART: %s\n", debugstr_w(deformated));
1201         msi_free(deformated);
1202
1203         ControlEvent_FireSubscribedEvent(package, szActionText, uirow);
1204
1205         msiobj_release(&uirow->hdr);
1206         break;
1207     }
1208     case INSTALLMESSAGE_PROGRESS:
1209         ControlEvent_FireSubscribedEvent(package, szSetProgress, record);
1210         break;
1211     }
1212
1213     return ERROR_SUCCESS;
1214 }
1215
1216 INT WINAPI MsiProcessMessage( MSIHANDLE hInstall, INSTALLMESSAGE eMessageType,
1217                               MSIHANDLE hRecord)
1218 {
1219     UINT ret = ERROR_INVALID_HANDLE;
1220     MSIPACKAGE *package = NULL;
1221     MSIRECORD *record = NULL;
1222
1223     package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE );
1224     if( !package )
1225     {
1226         HRESULT hr;
1227         IWineMsiRemotePackage *remote_package;
1228
1229         remote_package = (IWineMsiRemotePackage *)msi_get_remote( hInstall );
1230         if (!remote_package)
1231             return ERROR_INVALID_HANDLE;
1232
1233         hr = IWineMsiRemotePackage_ProcessMessage( remote_package, eMessageType, hRecord );
1234
1235         IWineMsiRemotePackage_Release( remote_package );
1236
1237         if (FAILED(hr))
1238         {
1239             if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
1240                 return HRESULT_CODE(hr);
1241
1242             return ERROR_FUNCTION_FAILED;
1243         }
1244
1245         return ERROR_SUCCESS;
1246     }
1247
1248     record = msihandle2msiinfo( hRecord, MSIHANDLETYPE_RECORD );
1249     if( !record )
1250         goto out;
1251
1252     ret = MSI_ProcessMessage( package, eMessageType, record );
1253
1254 out:
1255     msiobj_release( &package->hdr );
1256     if( record )
1257         msiobj_release( &record->hdr );
1258
1259     return ret;
1260 }
1261
1262 /* property code */
1263
1264 UINT WINAPI MsiSetPropertyA( MSIHANDLE hInstall, LPCSTR szName, LPCSTR szValue )
1265 {
1266     LPWSTR szwName = NULL, szwValue = NULL;
1267     UINT r = ERROR_OUTOFMEMORY;
1268
1269     szwName = strdupAtoW( szName );
1270     if( szName && !szwName )
1271         goto end;
1272
1273     szwValue = strdupAtoW( szValue );
1274     if( szValue && !szwValue )
1275         goto end;
1276
1277     r = MsiSetPropertyW( hInstall, szwName, szwValue);
1278
1279 end:
1280     msi_free( szwName );
1281     msi_free( szwValue );
1282
1283     return r;
1284 }
1285
1286 UINT MSI_SetPropertyW( MSIPACKAGE *package, LPCWSTR szName, LPCWSTR szValue)
1287 {
1288     MSIQUERY *view;
1289     MSIRECORD *row = NULL;
1290     UINT rc;
1291     DWORD sz = 0;
1292     WCHAR Query[1024];
1293
1294     static const WCHAR Insert[] = {
1295         'I','N','S','E','R','T',' ','i','n','t','o',' ',
1296         '`','_','P','r','o','p','e','r','t','y','`',' ','(',
1297         '`','_','P','r','o','p','e','r','t','y','`',',',
1298         '`','V','a','l','u','e','`',')',' ','V','A','L','U','E','S'
1299         ,' ','(','?',',','?',')',0};
1300     static const WCHAR Update[] = {
1301         'U','P','D','A','T','E',' ','`','_','P','r','o','p','e','r','t','y','`',
1302         ' ','s','e','t',' ','`','V','a','l','u','e','`',' ','=',' ','?',' ',
1303         'w','h','e','r','e',' ','`','_','P','r','o','p','e','r','t','y','`',
1304         ' ','=',' ','\'','%','s','\'',0};
1305     static const WCHAR Delete[] = {
1306         'D','E','L','E','T','E',' ','F','R','O','M',' ',
1307         '`','_','P','r','o','p','e','r','t','y','`',' ','W','H','E','R','E',' ',
1308         '`','_','P','r','o','p','e','r','t','y','`',' ','=',' ','\'','%','s','\'',0};
1309
1310     TRACE("%p %s %s\n", package, debugstr_w(szName), debugstr_w(szValue));
1311
1312     if (!szName)
1313         return ERROR_INVALID_PARAMETER;
1314
1315     /* this one is weird... */
1316     if (!szName[0])
1317         return szValue ? ERROR_FUNCTION_FAILED : ERROR_SUCCESS;
1318
1319     rc = MSI_GetPropertyW(package, szName, 0, &sz);
1320     if (!szValue || !*szValue)
1321     {
1322         sprintfW(Query, Delete, szName);
1323     }
1324     else if (rc == ERROR_MORE_DATA || rc == ERROR_SUCCESS)
1325     {
1326         sprintfW(Query, Update, szName);
1327
1328         row = MSI_CreateRecord(1);
1329         MSI_RecordSetStringW(row, 1, szValue);
1330     }
1331     else
1332     {
1333         strcpyW(Query, Insert);
1334
1335         row = MSI_CreateRecord(2);
1336         MSI_RecordSetStringW(row, 1, szName);
1337         MSI_RecordSetStringW(row, 2, szValue);
1338     }
1339
1340     rc = MSI_DatabaseOpenViewW(package->db, Query, &view);
1341     if (rc == ERROR_SUCCESS)
1342     {
1343         rc = MSI_ViewExecute(view, row);
1344         MSI_ViewClose(view);
1345         msiobj_release(&view->hdr);
1346     }
1347
1348     msiobj_release(&row->hdr);
1349
1350     return rc;
1351 }
1352
1353 UINT WINAPI MsiSetPropertyW( MSIHANDLE hInstall, LPCWSTR szName, LPCWSTR szValue)
1354 {
1355     MSIPACKAGE *package;
1356     UINT ret;
1357
1358     package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE);
1359     if( !package )
1360     {
1361         HRESULT hr;
1362         BSTR name = NULL, value = NULL;
1363         IWineMsiRemotePackage *remote_package;
1364
1365         remote_package = (IWineMsiRemotePackage *)msi_get_remote( hInstall );
1366         if (!remote_package)
1367             return ERROR_INVALID_HANDLE;
1368
1369         name = SysAllocString( szName );
1370         value = SysAllocString( szValue );
1371         if ((!name && szName) || (!value && szValue))
1372         {
1373             SysFreeString( name );
1374             SysFreeString( value );
1375             IWineMsiRemotePackage_Release( remote_package );
1376             return ERROR_OUTOFMEMORY;
1377         }
1378
1379         hr = IWineMsiRemotePackage_SetProperty( remote_package, name, value );
1380
1381         SysFreeString( name );
1382         SysFreeString( value );
1383         IWineMsiRemotePackage_Release( remote_package );
1384
1385         if (FAILED(hr))
1386         {
1387             if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
1388                 return HRESULT_CODE(hr);
1389
1390             return ERROR_FUNCTION_FAILED;
1391         }
1392
1393         return ERROR_SUCCESS;
1394     }
1395
1396     ret = MSI_SetPropertyW( package, szName, szValue);
1397     msiobj_release( &package->hdr );
1398     return ret;
1399 }
1400
1401 static MSIRECORD *MSI_GetPropertyRow( MSIPACKAGE *package, LPCWSTR name )
1402 {
1403     static const WCHAR query[]= {
1404         'S','E','L','E','C','T',' ','`','V','a','l','u','e','`',' ',
1405         'F','R','O','M',' ' ,'`','_','P','r','o','p','e','r','t','y','`',
1406         ' ','W','H','E','R','E',' ' ,'`','_','P','r','o','p','e','r','t','y','`',
1407         '=','\'','%','s','\'',0};
1408
1409     if (!name || !*name)
1410         return NULL;
1411
1412     return MSI_QueryGetRecord( package->db, query, name );
1413 }
1414
1415 /* internal function, not compatible with MsiGetPropertyW */
1416 UINT MSI_GetPropertyW( MSIPACKAGE *package, LPCWSTR szName, 
1417                        LPWSTR szValueBuf, LPDWORD pchValueBuf )
1418 {
1419     MSIRECORD *row;
1420     UINT rc = ERROR_FUNCTION_FAILED;
1421
1422     row = MSI_GetPropertyRow( package, szName );
1423
1424     if (*pchValueBuf > 0)
1425         szValueBuf[0] = 0;
1426
1427     if (row)
1428     {
1429         rc = MSI_RecordGetStringW(row, 1, szValueBuf, pchValueBuf);
1430         msiobj_release(&row->hdr);
1431     }
1432
1433     if (rc == ERROR_SUCCESS)
1434         TRACE("returning %s for property %s\n", debugstr_w(szValueBuf),
1435             debugstr_w(szName));
1436     else if (rc == ERROR_MORE_DATA)
1437         TRACE("need %d sized buffer for %s\n", *pchValueBuf,
1438             debugstr_w(szName));
1439     else
1440     {
1441         *pchValueBuf = 0;
1442         TRACE("property %s not found\n", debugstr_w(szName));
1443     }
1444
1445     return rc;
1446 }
1447
1448 LPWSTR msi_dup_property(MSIPACKAGE *package, LPCWSTR prop)
1449 {
1450     DWORD sz = 0;
1451     LPWSTR str;
1452     UINT r;
1453
1454     r = MSI_GetPropertyW(package, prop, NULL, &sz);
1455     if (r != ERROR_SUCCESS && r != ERROR_MORE_DATA)
1456         return NULL;
1457
1458     sz++;
1459     str = msi_alloc(sz * sizeof(WCHAR));
1460     r = MSI_GetPropertyW(package, prop, str, &sz);
1461     if (r != ERROR_SUCCESS)
1462     {
1463         msi_free(str);
1464         str = NULL;
1465     }
1466
1467     return str;
1468 }
1469
1470 int msi_get_property_int(MSIPACKAGE *package, LPCWSTR prop, int def)
1471 {
1472     LPWSTR str = msi_dup_property(package, prop);
1473     int val = str ? atoiW(str) : def;
1474     msi_free(str);
1475     return val;
1476 }
1477
1478 static UINT MSI_GetProperty( MSIHANDLE handle, LPCWSTR name,
1479                              awstring *szValueBuf, LPDWORD pchValueBuf )
1480 {
1481     static const WCHAR empty[] = {0};
1482     MSIPACKAGE *package;
1483     MSIRECORD *row = NULL;
1484     UINT r = ERROR_FUNCTION_FAILED;
1485     LPCWSTR val = NULL;
1486
1487     TRACE("%lu %s %p %p\n", handle, debugstr_w(name),
1488           szValueBuf->str.w, pchValueBuf );
1489
1490     if (!name)
1491         return ERROR_INVALID_PARAMETER;
1492
1493     package = msihandle2msiinfo( handle, MSIHANDLETYPE_PACKAGE );
1494     if (!package)
1495     {
1496         HRESULT hr;
1497         IWineMsiRemotePackage *remote_package;
1498         LPWSTR value = NULL;
1499         BSTR bname;
1500         DWORD len;
1501
1502         remote_package = (IWineMsiRemotePackage *)msi_get_remote( handle );
1503         if (!remote_package)
1504             return ERROR_INVALID_HANDLE;
1505
1506         bname = SysAllocString( name );
1507         if (!bname)
1508         {
1509             IWineMsiRemotePackage_Release( remote_package );
1510             return ERROR_OUTOFMEMORY;
1511         }
1512
1513         len = 0;
1514         hr = IWineMsiRemotePackage_GetProperty( remote_package, bname, NULL, &len );
1515         if (FAILED(hr))
1516             goto done;
1517
1518         len++;
1519         value = msi_alloc(len * sizeof(WCHAR));
1520         if (!value)
1521         {
1522             r = ERROR_OUTOFMEMORY;
1523             goto done;
1524         }
1525
1526         hr = IWineMsiRemotePackage_GetProperty( remote_package, bname, (BSTR *)value, &len );
1527         if (FAILED(hr))
1528             goto done;
1529
1530         r = msi_strcpy_to_awstring( value, szValueBuf, pchValueBuf );
1531
1532         /* Bug required by Adobe installers */
1533         if (!szValueBuf->unicode && !szValueBuf->str.a)
1534             *pchValueBuf *= sizeof(WCHAR);
1535
1536 done:
1537         IWineMsiRemotePackage_Release(remote_package);
1538         SysFreeString(bname);
1539         msi_free(value);
1540
1541         if (FAILED(hr))
1542         {
1543             if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
1544                 return HRESULT_CODE(hr);
1545
1546             return ERROR_FUNCTION_FAILED;
1547         }
1548
1549         return r;
1550     }
1551
1552     row = MSI_GetPropertyRow( package, name );
1553     if (row)
1554         val = MSI_RecordGetString( row, 1 );
1555
1556     if (!val)
1557         val = empty;
1558
1559     r = msi_strcpy_to_awstring( val, szValueBuf, pchValueBuf );
1560
1561     if (row)
1562         msiobj_release( &row->hdr );
1563     msiobj_release( &package->hdr );
1564
1565     return r;
1566 }
1567
1568 UINT WINAPI MsiGetPropertyA( MSIHANDLE hInstall, LPCSTR szName,
1569                              LPSTR szValueBuf, LPDWORD pchValueBuf )
1570 {
1571     awstring val;
1572     LPWSTR name;
1573     UINT r;
1574
1575     val.unicode = FALSE;
1576     val.str.a = szValueBuf;
1577
1578     name = strdupAtoW( szName );
1579     if (szName && !name)
1580         return ERROR_OUTOFMEMORY;
1581
1582     r = MSI_GetProperty( hInstall, name, &val, pchValueBuf );
1583     msi_free( name );
1584     return r;
1585 }
1586
1587 UINT WINAPI MsiGetPropertyW( MSIHANDLE hInstall, LPCWSTR szName,
1588                              LPWSTR szValueBuf, LPDWORD pchValueBuf )
1589 {
1590     awstring val;
1591
1592     val.unicode = TRUE;
1593     val.str.w = szValueBuf;
1594
1595     return MSI_GetProperty( hInstall, szName, &val, pchValueBuf );
1596 }
1597
1598 typedef struct _msi_remote_package_impl {
1599     const IWineMsiRemotePackageVtbl *lpVtbl;
1600     MSIHANDLE package;
1601     LONG refs;
1602 } msi_remote_package_impl;
1603
1604 static inline msi_remote_package_impl* mrp_from_IWineMsiRemotePackage( IWineMsiRemotePackage* iface )
1605 {
1606     return (msi_remote_package_impl*) iface;
1607 }
1608
1609 static HRESULT WINAPI mrp_QueryInterface( IWineMsiRemotePackage *iface,
1610                 REFIID riid,LPVOID *ppobj)
1611 {
1612     if( IsEqualCLSID( riid, &IID_IUnknown ) ||
1613         IsEqualCLSID( riid, &IID_IWineMsiRemotePackage ) )
1614     {
1615         IUnknown_AddRef( iface );
1616         *ppobj = iface;
1617         return S_OK;
1618     }
1619
1620     return E_NOINTERFACE;
1621 }
1622
1623 static ULONG WINAPI mrp_AddRef( IWineMsiRemotePackage *iface )
1624 {
1625     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1626
1627     return InterlockedIncrement( &This->refs );
1628 }
1629
1630 static ULONG WINAPI mrp_Release( IWineMsiRemotePackage *iface )
1631 {
1632     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1633     ULONG r;
1634
1635     r = InterlockedDecrement( &This->refs );
1636     if (r == 0)
1637     {
1638         MsiCloseHandle( This->package );
1639         msi_free( This );
1640     }
1641     return r;
1642 }
1643
1644 static HRESULT WINAPI mrp_SetMsiHandle( IWineMsiRemotePackage *iface, MSIHANDLE handle )
1645 {
1646     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1647     This->package = handle;
1648     return S_OK;
1649 }
1650
1651 static HRESULT WINAPI mrp_GetActiveDatabase( IWineMsiRemotePackage *iface, MSIHANDLE *handle )
1652 {
1653     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1654     IWineMsiRemoteDatabase *rdb = NULL;
1655     HRESULT hr;
1656     MSIHANDLE hdb;
1657
1658     hr = create_msi_remote_database( NULL, (LPVOID *)&rdb );
1659     if (FAILED(hr) || !rdb)
1660     {
1661         ERR("Failed to create remote database\n");
1662         return hr;
1663     }
1664
1665     hdb = MsiGetActiveDatabase(This->package);
1666
1667     hr = IWineMsiRemoteDatabase_SetMsiHandle( rdb, hdb );
1668     if (FAILED(hr))
1669     {
1670         ERR("Failed to set the database handle\n");
1671         return hr;
1672     }
1673
1674     *handle = alloc_msi_remote_handle( (IUnknown *)rdb );
1675     return S_OK;
1676 }
1677
1678 static HRESULT WINAPI mrp_GetProperty( IWineMsiRemotePackage *iface, BSTR property, BSTR *value, DWORD *size )
1679 {
1680     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1681     UINT r;
1682
1683     r = MsiGetPropertyW(This->package, (LPWSTR)property, (LPWSTR)value, size);
1684     if (r != ERROR_SUCCESS)
1685         return HRESULT_FROM_WIN32(r);
1686
1687     return S_OK;
1688 }
1689
1690 static HRESULT WINAPI mrp_SetProperty( IWineMsiRemotePackage *iface, BSTR property, BSTR value )
1691 {
1692     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1693     UINT r = MsiSetPropertyW(This->package, (LPWSTR)property, (LPWSTR)value);
1694     return HRESULT_FROM_WIN32(r);
1695 }
1696
1697 static HRESULT WINAPI mrp_ProcessMessage( IWineMsiRemotePackage *iface, INSTALLMESSAGE message, MSIHANDLE record )
1698 {
1699     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1700     UINT r = MsiProcessMessage(This->package, message, record);
1701     return HRESULT_FROM_WIN32(r);
1702 }
1703
1704 static HRESULT WINAPI mrp_DoAction( IWineMsiRemotePackage *iface, BSTR action )
1705 {
1706     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1707     UINT r = MsiDoActionW(This->package, (LPWSTR)action);
1708     return HRESULT_FROM_WIN32(r);
1709 }
1710
1711 static HRESULT WINAPI mrp_Sequence( IWineMsiRemotePackage *iface, BSTR table, int sequence )
1712 {
1713     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1714     UINT r = MsiSequenceW(This->package, (LPWSTR)table, sequence);
1715     return HRESULT_FROM_WIN32(r);
1716 }
1717
1718 static HRESULT WINAPI mrp_GetTargetPath( IWineMsiRemotePackage *iface, BSTR folder, BSTR *value, DWORD *size )
1719 {
1720     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1721     UINT r = MsiGetTargetPathW(This->package, (LPWSTR)folder, (LPWSTR)value, size);
1722     return HRESULT_FROM_WIN32(r);
1723 }
1724
1725 static HRESULT WINAPI mrp_SetTargetPath( IWineMsiRemotePackage *iface, BSTR folder, BSTR value)
1726 {
1727     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1728     UINT r = MsiSetTargetPathW(This->package, (LPWSTR)folder, (LPWSTR)value);
1729     return HRESULT_FROM_WIN32(r);
1730 }
1731
1732 static HRESULT WINAPI mrp_GetSourcePath( IWineMsiRemotePackage *iface, BSTR folder, BSTR *value, DWORD *size )
1733 {
1734     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1735     UINT r = MsiGetSourcePathW(This->package, (LPWSTR)folder, (LPWSTR)value, size);
1736     return HRESULT_FROM_WIN32(r);
1737 }
1738
1739 static HRESULT WINAPI mrp_GetMode( IWineMsiRemotePackage *iface, MSIRUNMODE mode, BOOL *ret )
1740 {
1741     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1742     *ret = MsiGetMode(This->package, mode);
1743     return S_OK;
1744 }
1745
1746 static HRESULT WINAPI mrp_GetFeatureState( IWineMsiRemotePackage *iface, BSTR feature,
1747                                     INSTALLSTATE *installed, INSTALLSTATE *action )
1748 {
1749     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1750     UINT r = MsiGetFeatureStateW(This->package, (LPWSTR)feature, installed, action);
1751     return HRESULT_FROM_WIN32(r);
1752 }
1753
1754 static HRESULT WINAPI mrp_SetFeatureState( IWineMsiRemotePackage *iface, BSTR feature, INSTALLSTATE state )
1755 {
1756     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1757     UINT r = MsiSetFeatureStateW(This->package, (LPWSTR)feature, state);
1758     return HRESULT_FROM_WIN32(r);
1759 }
1760
1761 static HRESULT WINAPI mrp_GetComponentState( IWineMsiRemotePackage *iface, BSTR component,
1762                                       INSTALLSTATE *installed, INSTALLSTATE *action )
1763 {
1764     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1765     UINT r = MsiGetComponentStateW(This->package, (LPWSTR)component, installed, action);
1766     return HRESULT_FROM_WIN32(r);
1767 }
1768
1769 static HRESULT WINAPI mrp_SetComponentState( IWineMsiRemotePackage *iface, BSTR component, INSTALLSTATE state )
1770 {
1771     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1772     UINT r = MsiSetComponentStateW(This->package, (LPWSTR)component, state);
1773     return HRESULT_FROM_WIN32(r);
1774 }
1775
1776 static HRESULT WINAPI mrp_GetLanguage( IWineMsiRemotePackage *iface, LANGID *language )
1777 {
1778     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1779     *language = MsiGetLanguage(This->package);
1780     return S_OK;
1781 }
1782
1783 static HRESULT WINAPI mrp_SetInstallLevel( IWineMsiRemotePackage *iface, int level )
1784 {
1785     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1786     UINT r = MsiSetInstallLevel(This->package, level);
1787     return HRESULT_FROM_WIN32(r);
1788 }
1789
1790 static HRESULT WINAPI mrp_FormatRecord( IWineMsiRemotePackage *iface, MSIHANDLE record,
1791                                  BSTR value, DWORD *size )
1792 {
1793     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1794     UINT r = MsiFormatRecordW(This->package, record, (LPWSTR)value, size);
1795     return HRESULT_FROM_WIN32(r);
1796 }
1797
1798 static HRESULT WINAPI mrp_EvaluateCondition( IWineMsiRemotePackage *iface, BSTR condition )
1799 {
1800     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1801     UINT r = MsiEvaluateConditionW(This->package, (LPWSTR)condition);
1802     return HRESULT_FROM_WIN32(r);
1803 }
1804
1805 static const IWineMsiRemotePackageVtbl msi_remote_package_vtbl =
1806 {
1807     mrp_QueryInterface,
1808     mrp_AddRef,
1809     mrp_Release,
1810     mrp_SetMsiHandle,
1811     mrp_GetActiveDatabase,
1812     mrp_GetProperty,
1813     mrp_SetProperty,
1814     mrp_ProcessMessage,
1815     mrp_DoAction,
1816     mrp_Sequence,
1817     mrp_GetTargetPath,
1818     mrp_SetTargetPath,
1819     mrp_GetSourcePath,
1820     mrp_GetMode,
1821     mrp_GetFeatureState,
1822     mrp_SetFeatureState,
1823     mrp_GetComponentState,
1824     mrp_SetComponentState,
1825     mrp_GetLanguage,
1826     mrp_SetInstallLevel,
1827     mrp_FormatRecord,
1828     mrp_EvaluateCondition,
1829 };
1830
1831 HRESULT create_msi_remote_package( IUnknown *pOuter, LPVOID *ppObj )
1832 {
1833     msi_remote_package_impl* This;
1834
1835     This = msi_alloc( sizeof *This );
1836     if (!This)
1837         return E_OUTOFMEMORY;
1838
1839     This->lpVtbl = &msi_remote_package_vtbl;
1840     This->package = 0;
1841     This->refs = 1;
1842
1843     *ppObj = This;
1844
1845     return S_OK;
1846 }
1847
1848 UINT msi_package_add_info(MSIPACKAGE *package, DWORD context, DWORD options,
1849                           LPCWSTR property, LPWSTR value)
1850 {
1851     MSISOURCELISTINFO *info;
1852
1853     info = msi_alloc(sizeof(MSISOURCELISTINFO));
1854     if (!info)
1855         return ERROR_OUTOFMEMORY;
1856
1857     info->context = context;
1858     info->options = options;
1859     info->property = property;
1860     info->value = strdupW(value);
1861     list_add_head(&package->sourcelist_info, &info->entry);
1862
1863     return ERROR_SUCCESS;
1864 }
1865
1866 UINT msi_package_add_media_disk(MSIPACKAGE *package, DWORD context, DWORD options,
1867                                 DWORD disk_id, LPWSTR volume_label, LPWSTR disk_prompt)
1868 {
1869     MSIMEDIADISK *disk;
1870
1871     disk = msi_alloc(sizeof(MSIMEDIADISK));
1872     if (!disk)
1873         return ERROR_OUTOFMEMORY;
1874
1875     disk->context = context;
1876     disk->options = options;
1877     disk->disk_id = disk_id;
1878     disk->volume_label = strdupW(volume_label);
1879     disk->disk_prompt = strdupW(disk_prompt);
1880     list_add_head(&package->sourcelist_media, &disk->entry);
1881
1882     return ERROR_SUCCESS;
1883 }