2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2005 Aric Stewart 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 * Here are helper functions formally in action.c that are used by a variaty of
23 * actions and functions.
31 #include "wine/debug.h"
34 #include "wine/unicode.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(msi);
40 static const WCHAR cszTargetDir[] = {'T','A','R','G','E','T','D','I','R',0};
41 static const WCHAR cszDatabase[]={'D','A','T','A','B','A','S','E',0};
43 const WCHAR cszSourceDir[] = {'S','o','u','r','c','e','D','i','r',0};
44 const WCHAR cszRootDrive[] = {'R','O','O','T','D','R','I','V','E',0};
45 const WCHAR cszbs[]={'\\',0};
47 LPWSTR build_icon_path(MSIPACKAGE *package, LPCWSTR icon_name )
49 LPWSTR SystemFolder, dest, FilePath;
51 static const WCHAR szInstaller[] =
52 {'M','i','c','r','o','s','o','f','t','\\',
53 'I','n','s','t','a','l','l','e','r','\\',0};
54 static const WCHAR szFolder[] =
55 {'A','p','p','D','a','t','a','F','o','l','d','e','r',0};
57 SystemFolder = msi_dup_property( package, szFolder );
59 dest = build_directory_name(3, SystemFolder, szInstaller, package->ProductCode);
61 create_full_pathW(dest);
63 FilePath = build_directory_name(2, dest, icon_name);
65 msi_free(SystemFolder);
70 LPWSTR msi_dup_record_field( MSIRECORD *row, INT index )
72 return strdupW( MSI_RecordGetString(row,index) );
75 MSICOMPONENT* get_loaded_component( MSIPACKAGE* package, LPCWSTR Component )
79 LIST_FOR_EACH_ENTRY( comp, &package->components, MSICOMPONENT, entry )
81 if (lstrcmpW(Component,comp->Component)==0)
87 MSIFEATURE* get_loaded_feature(MSIPACKAGE* package, LPCWSTR Feature )
91 LIST_FOR_EACH_ENTRY( feature, &package->features, MSIFEATURE, entry )
93 if (lstrcmpW( Feature, feature->Feature )==0)
99 MSIFILE* get_loaded_file( MSIPACKAGE* package, LPCWSTR key )
103 LIST_FOR_EACH_ENTRY( file, &package->files, MSIFILE, entry )
105 if (lstrcmpW( key, file->File )==0)
111 int track_tempfile( MSIPACKAGE *package, LPCWSTR name, LPCWSTR path )
115 LIST_FOR_EACH_ENTRY( temp, &package->tempfiles, MSITEMPFILE, entry )
117 if (lstrcmpW( name, temp->File )==0)
119 TRACE("tempfile %s already exists with path %s\n",
120 debugstr_w(temp->File), debugstr_w(temp->Path));
125 temp = msi_alloc_zero( sizeof (MSITEMPFILE) );
129 list_add_head( &package->tempfiles, &temp->entry );
131 temp->File = strdupW( name );
132 temp->Path = strdupW( path );
134 TRACE("adding tempfile %s with path %s\n",
135 debugstr_w(temp->File), debugstr_w(temp->Path));
140 MSIFOLDER *get_loaded_folder( MSIPACKAGE *package, LPCWSTR dir )
144 LIST_FOR_EACH_ENTRY( folder, &package->folders, MSIFOLDER, entry )
146 if (lstrcmpW( dir, folder->Directory )==0)
152 static LPWSTR get_source_root( MSIPACKAGE *package )
156 path = msi_dup_property( package, cszSourceDir );
160 path = msi_dup_property( package, cszDatabase );
163 p = strrchrW(path,'\\');
171 * clean_spaces_from_path()
173 * removes spaces from the beginning and end of path segments
174 * removes multiple \\ characters
176 static void clean_spaces_from_path( LPWSTR p )
183 /* copy until the end of the string or a space */
184 while (*p != ' ' && (*q = *p))
187 /* reduce many backslashes to one */
188 if (*p != '\\' || *q != '\\')
192 /* quit at the end of the string */
196 /* count the number of spaces */
201 /* if it's leading or trailing space, skip it */
202 if ( len == 0 || p[-1] == '\\' || p[n] == '\\' )
204 else /* copy n spaces */
205 while (n && (*q++ = *p++)) n--;
209 LPWSTR resolve_folder(MSIPACKAGE *package, LPCWSTR name, BOOL source,
210 BOOL set_prop, MSIFOLDER **folder)
213 LPWSTR p, path = NULL;
215 TRACE("Working to resolve %s\n",debugstr_w(name));
220 f = get_loaded_folder( package, name );
224 /* special resolving for Target and Source root dir */
225 if (strcmpW(name,cszTargetDir)==0 || strcmpW(name,cszSourceDir)==0)
227 if (!f->ResolvedTarget && !f->Property)
230 check_path = msi_dup_property( package, cszTargetDir );
233 check_path = msi_dup_property( package, cszRootDrive );
235 MSI_SetPropertyW(package,cszTargetDir,check_path);
238 /* correct misbuilt target dir */
239 path = build_directory_name(2, check_path, NULL);
240 clean_spaces_from_path( path );
241 if (strcmpiW(path,check_path)!=0)
242 MSI_SetPropertyW(package,cszTargetDir,path);
243 msi_free(check_path);
245 f->ResolvedTarget = path;
248 if (!f->ResolvedSource)
249 f->ResolvedSource = get_source_root( package );
255 if (!source && f->ResolvedTarget)
257 path = strdupW( f->ResolvedTarget );
258 TRACE(" already resolved to %s\n",debugstr_w(path));
261 else if (source && f->ResolvedSource)
263 path = strdupW( f->ResolvedSource );
264 TRACE(" (source)already resolved to %s\n",debugstr_w(path));
267 else if (!source && f->Property)
269 path = build_directory_name( 2, f->Property, NULL );
271 TRACE(" internally set to %s\n",debugstr_w(path));
273 MSI_SetPropertyW( package, name, path );
279 LPWSTR parent = f->Parent->Directory;
281 TRACE(" ! Parent is %s\n", debugstr_w(parent));
283 p = resolve_folder(package, parent, source, set_prop, NULL);
286 TRACE(" TargetDefault = %s\n", debugstr_w(f->TargetDefault));
288 path = build_directory_name( 3, p, f->TargetDefault, NULL );
289 clean_spaces_from_path( path );
290 f->ResolvedTarget = strdupW( path );
291 TRACE("target -> %s\n", debugstr_w(path));
293 MSI_SetPropertyW(package,name,path);
297 /* source may be in a few different places ... check each of them */
300 /* try the long path directory */
301 if (f->SourceLongPath)
303 path = build_directory_name( 3, p, f->SourceLongPath, NULL );
304 if (INVALID_FILE_ATTRIBUTES == GetFileAttributesW( path ))
311 /* try the short path directory */
312 if (!path && f->SourceShortPath)
314 path = build_directory_name( 3, p, f->SourceShortPath, NULL );
315 if (INVALID_FILE_ATTRIBUTES == GetFileAttributesW( path ))
322 /* try the root of the install */
324 path = get_source_root( package );
326 TRACE("source -> %s\n", debugstr_w(path));
327 f->ResolvedSource = strdupW( path );
334 /* wrapper to resist a need for a full rewrite right now */
335 DWORD deformat_string(MSIPACKAGE *package, LPCWSTR ptr, WCHAR** data )
339 MSIRECORD *rec = MSI_CreateRecord(1);
342 MSI_RecordSetStringW(rec,0,ptr);
343 MSI_FormatRecordW(package,rec,NULL,&size);
347 *data = msi_alloc(size*sizeof(WCHAR));
349 MSI_FormatRecordW(package,rec,*data,&size);
352 msiobj_release( &rec->hdr );
353 return sizeof(WCHAR)*size;
355 msiobj_release( &rec->hdr );
362 UINT schedule_action(MSIPACKAGE *package, UINT script, LPCWSTR action)
365 LPWSTR *newbuf = NULL;
366 if (script >= TOTAL_SCRIPTS)
368 FIXME("Unknown script requested %i\n",script);
369 return ERROR_FUNCTION_FAILED;
371 TRACE("Scheduling Action %s in script %i\n",debugstr_w(action), script);
373 count = package->script->ActionCount[script];
374 package->script->ActionCount[script]++;
376 newbuf = msi_realloc( package->script->Actions[script],
377 package->script->ActionCount[script]* sizeof(LPWSTR));
379 newbuf = msi_alloc( sizeof(LPWSTR));
381 newbuf[count] = strdupW(action);
382 package->script->Actions[script] = newbuf;
384 return ERROR_SUCCESS;
387 static void remove_tracked_tempfiles(MSIPACKAGE* package)
389 struct list *item, *cursor;
391 LIST_FOR_EACH_SAFE( item, cursor, &package->tempfiles )
393 MSITEMPFILE *temp = LIST_ENTRY( item, MSITEMPFILE, entry );
395 list_remove( &temp->entry );
396 TRACE("deleting temp file %s\n", debugstr_w( temp->Path ));
397 DeleteFileW( temp->Path );
398 msi_free( temp->File );
399 msi_free( temp->Path );
404 static void free_feature( MSIFEATURE *feature )
406 struct list *item, *cursor;
408 LIST_FOR_EACH_SAFE( item, cursor, &feature->Children )
410 FeatureList *fl = LIST_ENTRY( item, FeatureList, entry );
411 list_remove( &fl->entry );
415 LIST_FOR_EACH_SAFE( item, cursor, &feature->Components )
417 ComponentList *cl = LIST_ENTRY( item, ComponentList, entry );
418 list_remove( &cl->entry );
421 msi_free( feature->Feature );
422 msi_free( feature->Feature_Parent );
423 msi_free( feature->Directory );
424 msi_free( feature->Description );
425 msi_free( feature->Title );
429 void free_extension( MSIEXTENSION *ext )
431 struct list *item, *cursor;
433 LIST_FOR_EACH_SAFE( item, cursor, &ext->verbs )
435 MSIVERB *verb = LIST_ENTRY( item, MSIVERB, entry );
437 list_remove( &verb->entry );
438 msi_free( verb->Verb );
439 msi_free( verb->Command );
440 msi_free( verb->Argument );
444 msi_free( ext->Extension );
445 msi_free( ext->ProgIDText );
449 /* Called when the package is being closed */
450 void ACTION_free_package_structures( MSIPACKAGE* package)
453 struct list *item, *cursor;
455 TRACE("Freeing package action data\n");
457 remove_tracked_tempfiles(package);
459 LIST_FOR_EACH_SAFE( item, cursor, &package->features )
461 MSIFEATURE *feature = LIST_ENTRY( item, MSIFEATURE, entry );
462 list_remove( &feature->entry );
463 free_feature( feature );
466 LIST_FOR_EACH_SAFE( item, cursor, &package->folders )
468 MSIFOLDER *folder = LIST_ENTRY( item, MSIFOLDER, entry );
470 list_remove( &folder->entry );
471 msi_free( folder->Directory );
472 msi_free( folder->TargetDefault );
473 msi_free( folder->SourceLongPath );
474 msi_free( folder->SourceShortPath );
475 msi_free( folder->ResolvedTarget );
476 msi_free( folder->ResolvedSource );
477 msi_free( folder->Property );
481 LIST_FOR_EACH_SAFE( item, cursor, &package->components )
483 MSICOMPONENT *comp = LIST_ENTRY( item, MSICOMPONENT, entry );
485 list_remove( &comp->entry );
486 msi_free( comp->Component );
487 msi_free( comp->ComponentId );
488 msi_free( comp->Directory );
489 msi_free( comp->Condition );
490 msi_free( comp->KeyPath );
491 msi_free( comp->FullKeypath );
495 LIST_FOR_EACH_SAFE( item, cursor, &package->files )
497 MSIFILE *file = LIST_ENTRY( item, MSIFILE, entry );
499 list_remove( &file->entry );
500 msi_free( file->File );
501 msi_free( file->FileName );
502 msi_free( file->ShortName );
503 msi_free( file->LongName );
504 msi_free( file->Version );
505 msi_free( file->Language );
506 msi_free( file->SourcePath );
507 msi_free( file->TargetPath );
511 /* clean up extension, progid, class and verb structures */
512 LIST_FOR_EACH_SAFE( item, cursor, &package->classes )
514 MSICLASS *cls = LIST_ENTRY( item, MSICLASS, entry );
516 list_remove( &cls->entry );
517 msi_free( cls->clsid );
518 msi_free( cls->Context );
519 msi_free( cls->Description );
520 msi_free( cls->FileTypeMask );
521 msi_free( cls->IconPath );
522 msi_free( cls->DefInprocHandler );
523 msi_free( cls->DefInprocHandler32 );
524 msi_free( cls->Argument );
525 msi_free( cls->ProgIDText );
529 LIST_FOR_EACH_SAFE( item, cursor, &package->extensions )
531 MSIEXTENSION *ext = LIST_ENTRY( item, MSIEXTENSION, entry );
533 list_remove( &ext->entry );
534 free_extension( ext );
537 LIST_FOR_EACH_SAFE( item, cursor, &package->progids )
539 MSIPROGID *progid = LIST_ENTRY( item, MSIPROGID, entry );
541 list_remove( &progid->entry );
542 msi_free( progid->ProgID );
543 msi_free( progid->Description );
544 msi_free( progid->IconPath );
548 LIST_FOR_EACH_SAFE( item, cursor, &package->mimes )
550 MSIMIME *mt = LIST_ENTRY( item, MSIMIME, entry );
552 list_remove( &mt->entry );
553 msi_free( mt->clsid );
554 msi_free( mt->ContentType );
558 LIST_FOR_EACH_SAFE( item, cursor, &package->appids )
560 MSIAPPID *appid = LIST_ENTRY( item, MSIAPPID, entry );
562 list_remove( &appid->entry );
563 msi_free( appid->AppID );
564 msi_free( appid->RemoteServerName );
565 msi_free( appid->LocalServer );
566 msi_free( appid->ServiceParameters );
567 msi_free( appid->DllSurrogate );
573 for (i = 0; i < TOTAL_SCRIPTS; i++)
576 for (j = 0; j < package->script->ActionCount[i]; j++)
577 msi_free(package->script->Actions[i][j]);
579 msi_free(package->script->Actions[i]);
582 for (i = 0; i < package->script->UniqueActionsCount; i++)
583 msi_free(package->script->UniqueActions[i]);
585 msi_free(package->script->UniqueActions);
586 msi_free(package->script);
589 msi_free(package->PackagePath);
590 msi_free(package->ProductCode);
591 msi_free(package->ActionFormat);
592 msi_free(package->LastAction);
594 /* cleanup control event subscriptions */
595 ControlEvent_CleanupSubscriptions(package);
599 * build_directory_name()
601 * This function is to save messing round with directory names
602 * It handles adding backslashes between path segments,
603 * and can add \ at the end of the directory name if told to.
605 * It takes a variable number of arguments.
606 * It always allocates a new string for the result, so make sure
607 * to free the return value when finished with it.
609 * The first arg is the number of path segments that follow.
610 * The arguments following count are a list of path segments.
611 * A path segment may be NULL.
613 * Path segments will be added with a \ separating them.
614 * A \ will not be added after the last segment, however if the
615 * last segment is NULL, then the last character will be a \
618 LPWSTR build_directory_name(DWORD count, ...)
625 for(i=0; i<count; i++)
627 LPCWSTR str = va_arg(va,LPCWSTR);
629 sz += strlenW(str) + 1;
633 dir = msi_alloc(sz*sizeof(WCHAR));
637 for(i=0; i<count; i++)
639 LPCWSTR str = va_arg(va,LPCWSTR);
643 if( ((i+1)!=count) && dir[strlenW(dir)-1]!='\\')
649 /***********************************************************************
652 * Recursively create all directories in the path.
654 * shamelessly stolen from setupapi/queue.c
656 BOOL create_full_pathW(const WCHAR *path)
662 new_path = msi_alloc( (strlenW(path) + 1) * sizeof(WCHAR));
664 strcpyW(new_path, path);
666 while((len = strlenW(new_path)) && new_path[len - 1] == '\\')
667 new_path[len - 1] = 0;
669 while(!CreateDirectoryW(new_path, NULL))
672 DWORD last_error = GetLastError();
673 if(last_error == ERROR_ALREADY_EXISTS)
676 if(last_error != ERROR_PATH_NOT_FOUND)
682 if(!(slash = strrchrW(new_path, '\\')))
688 len = slash - new_path;
690 if(!create_full_pathW(new_path))
695 new_path[len] = '\\';
702 void ui_progress(MSIPACKAGE *package, int a, int b, int c, int d )
706 row = MSI_CreateRecord(4);
707 MSI_RecordSetInteger(row,1,a);
708 MSI_RecordSetInteger(row,2,b);
709 MSI_RecordSetInteger(row,3,c);
710 MSI_RecordSetInteger(row,4,d);
711 MSI_ProcessMessage(package, INSTALLMESSAGE_PROGRESS, row);
712 msiobj_release(&row->hdr);
714 msi_dialog_check_messages(NULL);
717 void ui_actiondata(MSIPACKAGE *package, LPCWSTR action, MSIRECORD * record)
719 static const WCHAR Query_t[] =
720 {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
721 '`','A','c','t','i','o', 'n','T','e','x','t','`',' ',
722 'W','H','E','R','E',' ', '`','A','c','t','i','o','n','`',' ','=',
723 ' ','\'','%','s','\'',0};
728 if (!package->LastAction || strcmpW(package->LastAction,action))
730 row = MSI_QueryGetRecord(package->db, Query_t, action);
734 if (MSI_RecordIsNull(row,3))
736 msiobj_release(&row->hdr);
740 /* update the cached actionformat */
741 msi_free(package->ActionFormat);
742 package->ActionFormat = msi_dup_record_field(row,3);
744 msi_free(package->LastAction);
745 package->LastAction = strdupW(action);
747 msiobj_release(&row->hdr);
750 MSI_RecordSetStringW(record,0,package->ActionFormat);
752 MSI_FormatRecordW(package,record,message,&size);
754 row = MSI_CreateRecord(1);
755 MSI_RecordSetStringW(row,1,message);
757 MSI_ProcessMessage(package, INSTALLMESSAGE_ACTIONDATA, row);
759 msiobj_release(&row->hdr);
762 BOOL ACTION_VerifyComponentForAction( MSICOMPONENT* comp, INSTALLSTATE check )
767 if (comp->Installed == check)
770 if (comp->ActionRequest == check)
776 BOOL ACTION_VerifyFeatureForAction( MSIFEATURE* feature, INSTALLSTATE check )
781 if (feature->Installed == check)
784 if (feature->ActionRequest == check)
790 void reduce_to_longfilename(WCHAR* filename)
792 LPWSTR p = strchrW(filename,'|');
794 memmove(filename, p+1, (strlenW(p+1)+1)*sizeof(WCHAR));
797 void reduce_to_shortfilename(WCHAR* filename)
799 LPWSTR p = strchrW(filename,'|');
804 LPWSTR create_component_advertise_string(MSIPACKAGE* package,
805 MSICOMPONENT* component, LPCWSTR feature)
807 static const WCHAR fmt[] = {'%','s','%','s','%','c','%','s',0};
808 WCHAR productid_85[21], component_85[21];
809 LPWSTR output = NULL;
813 /* > is used if there is a component GUID and < if not. */
818 CLSIDFromString(package->ProductCode, &clsid);
819 encode_base85_guid(&clsid, productid_85);
823 CLSIDFromString(component->ComponentId, &clsid);
824 encode_base85_guid(&clsid, component_85);
827 TRACE("prod=%s feat=%s comp=%s\n", debugstr_w(productid_85),
828 debugstr_w(feature), debugstr_w(component_85));
830 sz = 20 + lstrlenW(feature) + 20 + 3;
832 output = msi_alloc_zero(sz*sizeof(WCHAR));
834 sprintfW(output, fmt, productid_85, feature,
835 component?'>':'<', component_85);
840 /* update compoennt state based on a feature change */
841 void ACTION_UpdateComponentStates(MSIPACKAGE *package, LPCWSTR szFeature)
843 INSTALLSTATE newstate;
847 feature = get_loaded_feature(package,szFeature);
851 newstate = feature->ActionRequest;
853 if (newstate == INSTALLSTATE_ABSENT)
854 newstate = INSTALLSTATE_UNKNOWN;
856 LIST_FOR_EACH_ENTRY( cl, &feature->Components, ComponentList, entry )
858 MSICOMPONENT* component = cl->component;
860 TRACE("MODIFYING(%i): Component %s (Installed %i, Action %i, Request %i)\n",
861 newstate, debugstr_w(component->Component), component->Installed,
862 component->Action, component->ActionRequest);
864 if (!component->Enabled)
867 if (newstate == INSTALLSTATE_LOCAL)
869 component->ActionRequest = INSTALLSTATE_LOCAL;
870 component->Action = INSTALLSTATE_LOCAL;
874 ComponentList *clist;
877 component->ActionRequest = newstate;
878 component->Action = newstate;
880 /*if any other feature wants is local we need to set it local*/
881 LIST_FOR_EACH_ENTRY( f, &package->features, MSIFEATURE, entry )
883 if ( f->ActionRequest != INSTALLSTATE_LOCAL &&
884 f->ActionRequest != INSTALLSTATE_SOURCE )
889 LIST_FOR_EACH_ENTRY( clist, &f->Components, ComponentList, entry )
891 if ( clist->component == component &&
892 (f->ActionRequest == INSTALLSTATE_LOCAL ||
893 f->ActionRequest == INSTALLSTATE_SOURCE) )
895 TRACE("Saved by %s\n", debugstr_w(f->Feature));
897 if (component->Attributes & msidbComponentAttributesOptional)
899 if (f->Attributes & msidbFeatureAttributesFavorSource)
901 component->Action = INSTALLSTATE_SOURCE;
902 component->ActionRequest = INSTALLSTATE_SOURCE;
906 component->Action = INSTALLSTATE_LOCAL;
907 component->ActionRequest = INSTALLSTATE_LOCAL;
910 else if (component->Attributes & msidbComponentAttributesSourceOnly)
912 component->Action = INSTALLSTATE_SOURCE;
913 component->ActionRequest = INSTALLSTATE_SOURCE;
917 component->Action = INSTALLSTATE_LOCAL;
918 component->ActionRequest = INSTALLSTATE_LOCAL;
924 TRACE("Result (%i): Component %s (Installed %i, Action %i, Request %i)\n",
925 newstate, debugstr_w(component->Component), component->Installed,
926 component->Action, component->ActionRequest);
930 UINT register_unique_action(MSIPACKAGE *package, LPCWSTR action)
933 LPWSTR *newbuf = NULL;
935 if (!package->script)
938 TRACE("Registering Action %s as having fun\n",debugstr_w(action));
940 count = package->script->UniqueActionsCount;
941 package->script->UniqueActionsCount++;
943 newbuf = msi_realloc( package->script->UniqueActions,
944 package->script->UniqueActionsCount* sizeof(LPWSTR));
946 newbuf = msi_alloc( sizeof(LPWSTR));
948 newbuf[count] = strdupW(action);
949 package->script->UniqueActions = newbuf;
951 return ERROR_SUCCESS;
954 BOOL check_unique_action(MSIPACKAGE *package, LPCWSTR action)
958 if (!package->script)
961 for (i = 0; i < package->script->UniqueActionsCount; i++)
962 if (!strcmpW(package->script->UniqueActions[i],action))
968 WCHAR* generate_error_string(MSIPACKAGE *package, UINT error, DWORD count, ... )
970 static const WCHAR query[] = {'S','E','L','E','C','T',' ','`','M','e','s','s','a','g','e','`',' ','F','R','O','M',' ','`','E','r','r','o','r','`',' ','W','H','E','R','E',' ','`','E','r','r','o','r','`',' ','=',' ','%','i',0};
980 row = MSI_QueryGetRecord(package->db, query, error);
984 rec = MSI_CreateRecord(count+2);
986 str = MSI_RecordGetString(row,1);
987 MSI_RecordSetStringW(rec,0,str);
988 msiobj_release( &row->hdr );
989 MSI_RecordSetInteger(rec,1,error);
992 for (i = 0; i < count; i++)
994 str = va_arg(va,LPCWSTR);
995 MSI_RecordSetStringW(rec,(i+2),str);
999 MSI_FormatRecordW(package,rec,NULL,&size);
1003 data = msi_alloc(size*sizeof(WCHAR));
1005 MSI_FormatRecordW(package,rec,data,&size);
1008 msiobj_release( &rec->hdr );
1012 msiobj_release( &rec->hdr );
1017 void msi_ui_error( DWORD msg_id, DWORD type )
1021 static const WCHAR title[] = {
1022 'W','i','n','d','o','w','s',' ','I','n','s','t','a','l','l','e','r',0
1025 if (!MsiLoadStringW( -1, msg_id, text, sizeof(text) / sizeof(text[0]),
1026 MAKELANGID(LANG_NEUTRAL, SUBLANG_NEUTRAL) ))
1029 MessageBoxW( NULL, text, title, type );