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 variety of
23 * actions and functions.
29 #include "wine/debug.h"
32 #include "wine/unicode.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(msi);
37 static const WCHAR cszTargetDir[] = {'T','A','R','G','E','T','D','I','R',0};
38 static const WCHAR cszDatabase[]={'D','A','T','A','B','A','S','E',0};
40 LPWSTR build_icon_path(MSIPACKAGE *package, LPCWSTR icon_name )
42 LPWSTR SystemFolder, dest, FilePath;
44 static const WCHAR szInstaller[] =
45 {'M','i','c','r','o','s','o','f','t','\\',
46 'I','n','s','t','a','l','l','e','r','\\',0};
47 static const WCHAR szFolder[] =
48 {'A','p','p','D','a','t','a','F','o','l','d','e','r',0};
50 SystemFolder = msi_dup_property( package, szFolder );
52 dest = build_directory_name(3, SystemFolder, szInstaller, package->ProductCode);
54 create_full_pathW(dest);
56 FilePath = build_directory_name(2, dest, icon_name);
58 msi_free(SystemFolder);
63 LPWSTR msi_dup_record_field( MSIRECORD *rec, INT field )
69 if (MSI_RecordIsNull( rec, field ))
72 r = MSI_RecordGetStringW( rec, field, NULL, &sz );
73 if (r != ERROR_SUCCESS)
77 str = msi_alloc( sz * sizeof (WCHAR) );
81 r = MSI_RecordGetStringW( rec, field, str, &sz );
82 if (r != ERROR_SUCCESS)
84 ERR("failed to get string!\n");
91 MSICOMPONENT* get_loaded_component( MSIPACKAGE* package, LPCWSTR Component )
95 LIST_FOR_EACH_ENTRY( comp, &package->components, MSICOMPONENT, entry )
97 if (lstrcmpW(Component,comp->Component)==0)
103 MSIFEATURE* get_loaded_feature(MSIPACKAGE* package, LPCWSTR Feature )
107 LIST_FOR_EACH_ENTRY( feature, &package->features, MSIFEATURE, entry )
109 if (lstrcmpW( Feature, feature->Feature )==0)
115 MSIFILE* get_loaded_file( MSIPACKAGE* package, LPCWSTR key )
119 LIST_FOR_EACH_ENTRY( file, &package->files, MSIFILE, entry )
121 if (lstrcmpW( key, file->File )==0)
127 int track_tempfile( MSIPACKAGE *package, LPCWSTR path )
131 TRACE("%s\n", debugstr_w(path));
133 LIST_FOR_EACH_ENTRY( temp, &package->tempfiles, MSITEMPFILE, entry )
134 if (!lstrcmpW( path, temp->Path ))
137 temp = msi_alloc_zero( sizeof (MSITEMPFILE) );
141 list_add_head( &package->tempfiles, &temp->entry );
142 temp->Path = strdupW( path );
147 MSIFOLDER *get_loaded_folder( MSIPACKAGE *package, LPCWSTR dir )
151 LIST_FOR_EACH_ENTRY( folder, &package->folders, MSIFOLDER, entry )
153 if (lstrcmpW( dir, folder->Directory )==0)
159 void msi_reset_folders( MSIPACKAGE *package, BOOL source )
163 LIST_FOR_EACH_ENTRY( folder, &package->folders, MSIFOLDER, entry )
167 msi_free( folder->ResolvedSource );
168 folder->ResolvedSource = NULL;
172 msi_free( folder->ResolvedTarget );
173 folder->ResolvedTarget = NULL;
178 static LPWSTR get_source_root( MSIPACKAGE *package )
182 path = msi_dup_property( package, cszSourceDir );
186 path = msi_dup_property( package, cszDatabase );
189 p = strrchrW(path,'\\');
197 * clean_spaces_from_path()
199 * removes spaces from the beginning and end of path segments
200 * removes multiple \\ characters
202 static void clean_spaces_from_path( LPWSTR p )
209 /* copy until the end of the string or a space */
210 while (*p != ' ' && (*q = *p))
213 /* reduce many backslashes to one */
214 if (*p != '\\' || *q != '\\')
218 /* quit at the end of the string */
222 /* count the number of spaces */
227 /* if it's leading or trailing space, skip it */
228 if ( len == 0 || p[-1] == '\\' || p[n] == '\\' )
230 else /* copy n spaces */
231 while (n && (*q++ = *p++)) n--;
235 LPWSTR resolve_file_source(MSIPACKAGE *package, MSIFILE *file)
239 TRACE("Working to resolve source of file %s\n", debugstr_w(file->File));
241 if (file->IsCompressed)
244 p = resolve_folder(package, file->Component->Directory,
245 TRUE, FALSE, TRUE, NULL);
246 path = build_directory_name(2, p, file->ShortName);
248 if (file->LongName &&
249 GetFileAttributesW(path) == INVALID_FILE_ATTRIBUTES)
252 path = build_directory_name(2, p, file->LongName);
257 TRACE("file %s source resolves to %s\n", debugstr_w(file->File),
263 LPWSTR resolve_folder(MSIPACKAGE *package, LPCWSTR name, BOOL source,
264 BOOL set_prop, BOOL load_prop, MSIFOLDER **folder)
267 LPWSTR p, path = NULL, parent;
269 TRACE("Working to resolve %s\n",debugstr_w(name));
274 if (!lstrcmpW(name,cszSourceDir))
277 f = get_loaded_folder( package, name );
281 /* special resolving for Target and Source root dir */
282 if (!strcmpW(name,cszTargetDir))
284 if (!f->ResolvedTarget && !f->Property)
287 check_path = msi_dup_property( package, cszTargetDir );
290 check_path = msi_dup_property( package, cszRootDrive );
292 MSI_SetPropertyW(package,cszTargetDir,check_path);
295 /* correct misbuilt target dir */
296 path = build_directory_name(2, check_path, NULL);
297 clean_spaces_from_path( path );
298 if (strcmpiW(path,check_path)!=0)
299 MSI_SetPropertyW(package,cszTargetDir,path);
300 msi_free(check_path);
302 f->ResolvedTarget = path;
305 if (!f->ResolvedSource)
306 f->ResolvedSource = get_source_root( package );
312 if (!source && f->ResolvedTarget)
314 path = strdupW( f->ResolvedTarget );
315 TRACE(" already resolved to %s\n",debugstr_w(path));
319 if (source && f->ResolvedSource)
321 path = strdupW( f->ResolvedSource );
322 TRACE(" (source)already resolved to %s\n",debugstr_w(path));
326 if (!source && f->Property)
328 path = build_directory_name( 2, f->Property, NULL );
330 TRACE(" internally set to %s\n",debugstr_w(path));
332 MSI_SetPropertyW( package, name, path );
336 if (!source && load_prop && (path = msi_dup_property( package, name )))
338 f->ResolvedTarget = strdupW( path );
339 TRACE(" property set to %s\n", debugstr_w(path));
348 TRACE(" ! Parent is %s\n", debugstr_w(parent));
350 p = resolve_folder(package, parent, source, set_prop, load_prop, NULL);
353 TRACE(" TargetDefault = %s\n", debugstr_w(f->TargetDefault));
355 path = build_directory_name( 3, p, f->TargetDefault, NULL );
356 clean_spaces_from_path( path );
357 f->ResolvedTarget = strdupW( path );
358 TRACE("target -> %s\n", debugstr_w(path));
360 MSI_SetPropertyW(package,name,path);
366 if (package->WordCount & msidbSumInfoSourceTypeCompressed)
367 path = get_source_root( package );
368 else if (package->WordCount & msidbSumInfoSourceTypeSFN)
369 path = build_directory_name( 3, p, f->SourceShortPath, NULL );
371 path = build_directory_name( 3, p, f->SourceLongPath, NULL );
373 TRACE("source -> %s\n", debugstr_w(path));
374 f->ResolvedSource = strdupW( path );
381 /* wrapper to resist a need for a full rewrite right now */
382 DWORD deformat_string(MSIPACKAGE *package, LPCWSTR ptr, WCHAR** data )
386 MSIRECORD *rec = MSI_CreateRecord(1);
389 MSI_RecordSetStringW(rec,0,ptr);
390 MSI_FormatRecordW(package,rec,NULL,&size);
393 *data = msi_alloc(size*sizeof(WCHAR));
395 MSI_FormatRecordW(package,rec,*data,&size);
399 msiobj_release( &rec->hdr );
400 return sizeof(WCHAR)*size;
407 UINT schedule_action(MSIPACKAGE *package, UINT script, LPCWSTR action)
410 LPWSTR *newbuf = NULL;
411 if (script >= TOTAL_SCRIPTS)
413 FIXME("Unknown script requested %i\n",script);
414 return ERROR_FUNCTION_FAILED;
416 TRACE("Scheduling Action %s in script %i\n",debugstr_w(action), script);
418 count = package->script->ActionCount[script];
419 package->script->ActionCount[script]++;
421 newbuf = msi_realloc( package->script->Actions[script],
422 package->script->ActionCount[script]* sizeof(LPWSTR));
424 newbuf = msi_alloc( sizeof(LPWSTR));
426 newbuf[count] = strdupW(action);
427 package->script->Actions[script] = newbuf;
429 return ERROR_SUCCESS;
432 void msi_free_action_script(MSIPACKAGE *package, UINT script)
435 for (i = 0; i < package->script->ActionCount[script]; i++)
436 msi_free(package->script->Actions[script][i]);
438 msi_free(package->script->Actions[script]);
439 package->script->Actions[script] = NULL;
440 package->script->ActionCount[script] = 0;
443 static void remove_tracked_tempfiles(MSIPACKAGE* package)
445 struct list *item, *cursor;
447 LIST_FOR_EACH_SAFE( item, cursor, &package->tempfiles )
449 MSITEMPFILE *temp = LIST_ENTRY( item, MSITEMPFILE, entry );
451 list_remove( &temp->entry );
452 TRACE("deleting temp file %s\n", debugstr_w( temp->Path ));
453 if (!DeleteFileW( temp->Path ))
454 ERR("failed to delete %s\n", debugstr_w( temp->Path ));
455 msi_free( temp->Path );
460 static void free_feature( MSIFEATURE *feature )
462 struct list *item, *cursor;
464 LIST_FOR_EACH_SAFE( item, cursor, &feature->Children )
466 FeatureList *fl = LIST_ENTRY( item, FeatureList, entry );
467 list_remove( &fl->entry );
471 LIST_FOR_EACH_SAFE( item, cursor, &feature->Components )
473 ComponentList *cl = LIST_ENTRY( item, ComponentList, entry );
474 list_remove( &cl->entry );
477 msi_free( feature->Feature );
478 msi_free( feature->Feature_Parent );
479 msi_free( feature->Directory );
480 msi_free( feature->Description );
481 msi_free( feature->Title );
485 static void free_extension( MSIEXTENSION *ext )
487 struct list *item, *cursor;
489 LIST_FOR_EACH_SAFE( item, cursor, &ext->verbs )
491 MSIVERB *verb = LIST_ENTRY( item, MSIVERB, entry );
493 list_remove( &verb->entry );
494 msi_free( verb->Verb );
495 msi_free( verb->Command );
496 msi_free( verb->Argument );
500 msi_free( ext->Extension );
501 msi_free( ext->ProgIDText );
505 /* Called when the package is being closed */
506 void ACTION_free_package_structures( MSIPACKAGE* package)
509 struct list *item, *cursor;
511 TRACE("Freeing package action data\n");
513 remove_tracked_tempfiles(package);
515 LIST_FOR_EACH_SAFE( item, cursor, &package->features )
517 MSIFEATURE *feature = LIST_ENTRY( item, MSIFEATURE, entry );
518 list_remove( &feature->entry );
519 free_feature( feature );
522 LIST_FOR_EACH_SAFE( item, cursor, &package->folders )
524 MSIFOLDER *folder = LIST_ENTRY( item, MSIFOLDER, entry );
526 list_remove( &folder->entry );
527 msi_free( folder->Parent );
528 msi_free( folder->Directory );
529 msi_free( folder->TargetDefault );
530 msi_free( folder->SourceLongPath );
531 msi_free( folder->SourceShortPath );
532 msi_free( folder->ResolvedTarget );
533 msi_free( folder->ResolvedSource );
534 msi_free( folder->Property );
538 LIST_FOR_EACH_SAFE( item, cursor, &package->components )
540 MSICOMPONENT *comp = LIST_ENTRY( item, MSICOMPONENT, entry );
542 list_remove( &comp->entry );
543 msi_free( comp->Component );
544 msi_free( comp->ComponentId );
545 msi_free( comp->Directory );
546 msi_free( comp->Condition );
547 msi_free( comp->KeyPath );
548 msi_free( comp->FullKeypath );
552 LIST_FOR_EACH_SAFE( item, cursor, &package->files )
554 MSIFILE *file = LIST_ENTRY( item, MSIFILE, entry );
556 list_remove( &file->entry );
557 msi_free( file->File );
558 msi_free( file->FileName );
559 msi_free( file->ShortName );
560 msi_free( file->LongName );
561 msi_free( file->Version );
562 msi_free( file->Language );
563 msi_free( file->TargetPath );
567 /* clean up extension, progid, class and verb structures */
568 LIST_FOR_EACH_SAFE( item, cursor, &package->classes )
570 MSICLASS *cls = LIST_ENTRY( item, MSICLASS, entry );
572 list_remove( &cls->entry );
573 msi_free( cls->clsid );
574 msi_free( cls->Context );
575 msi_free( cls->Description );
576 msi_free( cls->FileTypeMask );
577 msi_free( cls->IconPath );
578 msi_free( cls->DefInprocHandler );
579 msi_free( cls->DefInprocHandler32 );
580 msi_free( cls->Argument );
581 msi_free( cls->ProgIDText );
585 LIST_FOR_EACH_SAFE( item, cursor, &package->extensions )
587 MSIEXTENSION *ext = LIST_ENTRY( item, MSIEXTENSION, entry );
589 list_remove( &ext->entry );
590 free_extension( ext );
593 LIST_FOR_EACH_SAFE( item, cursor, &package->progids )
595 MSIPROGID *progid = LIST_ENTRY( item, MSIPROGID, entry );
597 list_remove( &progid->entry );
598 msi_free( progid->ProgID );
599 msi_free( progid->Description );
600 msi_free( progid->IconPath );
604 LIST_FOR_EACH_SAFE( item, cursor, &package->mimes )
606 MSIMIME *mt = LIST_ENTRY( item, MSIMIME, entry );
608 list_remove( &mt->entry );
609 msi_free( mt->clsid );
610 msi_free( mt->ContentType );
614 LIST_FOR_EACH_SAFE( item, cursor, &package->appids )
616 MSIAPPID *appid = LIST_ENTRY( item, MSIAPPID, entry );
618 list_remove( &appid->entry );
619 msi_free( appid->AppID );
620 msi_free( appid->RemoteServerName );
621 msi_free( appid->LocalServer );
622 msi_free( appid->ServiceParameters );
623 msi_free( appid->DllSurrogate );
627 LIST_FOR_EACH_SAFE( item, cursor, &package->sourcelist_info )
629 MSISOURCELISTINFO *info = LIST_ENTRY( item, MSISOURCELISTINFO, entry );
631 list_remove( &info->entry );
632 msi_free( info->value );
636 LIST_FOR_EACH_SAFE( item, cursor, &package->sourcelist_media )
638 MSIMEDIADISK *info = LIST_ENTRY( item, MSIMEDIADISK, entry );
640 list_remove( &info->entry );
641 msi_free( info->volume_label );
642 msi_free( info->disk_prompt );
648 for (i = 0; i < TOTAL_SCRIPTS; i++)
649 msi_free_action_script(package, i);
651 for (i = 0; i < package->script->UniqueActionsCount; i++)
652 msi_free(package->script->UniqueActions[i]);
654 msi_free(package->script->UniqueActions);
655 msi_free(package->script);
660 msi_free(package->patch->patchcode);
661 msi_free(package->patch->transforms);
662 msi_free(package->patch);
665 msi_free(package->BaseURL);
666 msi_free(package->PackagePath);
667 msi_free(package->ProductCode);
668 msi_free(package->ActionFormat);
669 msi_free(package->LastAction);
671 /* cleanup control event subscriptions */
672 ControlEvent_CleanupSubscriptions(package);
676 * build_directory_name()
678 * This function is to save messing round with directory names
679 * It handles adding backslashes between path segments,
680 * and can add \ at the end of the directory name if told to.
682 * It takes a variable number of arguments.
683 * It always allocates a new string for the result, so make sure
684 * to free the return value when finished with it.
686 * The first arg is the number of path segments that follow.
687 * The arguments following count are a list of path segments.
688 * A path segment may be NULL.
690 * Path segments will be added with a \ separating them.
691 * A \ will not be added after the last segment, however if the
692 * last segment is NULL, then the last character will be a \
695 LPWSTR build_directory_name(DWORD count, ...)
702 for(i=0; i<count; i++)
704 LPCWSTR str = va_arg(va,LPCWSTR);
706 sz += strlenW(str) + 1;
710 dir = msi_alloc(sz*sizeof(WCHAR));
714 for(i=0; i<count; i++)
716 LPCWSTR str = va_arg(va,LPCWSTR);
720 if( ((i+1)!=count) && dir[strlenW(dir)-1]!='\\')
721 strcatW(dir, szBackSlash);
726 /***********************************************************************
729 * Recursively create all directories in the path.
731 * shamelessly stolen from setupapi/queue.c
733 BOOL create_full_pathW(const WCHAR *path)
739 new_path = msi_alloc( (strlenW(path) + 1) * sizeof(WCHAR));
741 strcpyW(new_path, path);
743 while((len = strlenW(new_path)) && new_path[len - 1] == '\\')
744 new_path[len - 1] = 0;
746 while(!CreateDirectoryW(new_path, NULL))
749 DWORD last_error = GetLastError();
750 if(last_error == ERROR_ALREADY_EXISTS)
753 if(last_error != ERROR_PATH_NOT_FOUND)
759 if(!(slash = strrchrW(new_path, '\\')))
765 len = slash - new_path;
767 if(!create_full_pathW(new_path))
772 new_path[len] = '\\';
779 void ui_progress(MSIPACKAGE *package, int a, int b, int c, int d )
783 row = MSI_CreateRecord(4);
784 MSI_RecordSetInteger(row,1,a);
785 MSI_RecordSetInteger(row,2,b);
786 MSI_RecordSetInteger(row,3,c);
787 MSI_RecordSetInteger(row,4,d);
788 MSI_ProcessMessage(package, INSTALLMESSAGE_PROGRESS, row);
789 msiobj_release(&row->hdr);
791 msi_dialog_check_messages(NULL);
794 void ui_actiondata(MSIPACKAGE *package, LPCWSTR action, MSIRECORD * record)
796 static const WCHAR Query_t[] =
797 {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
798 '`','A','c','t','i','o', 'n','T','e','x','t','`',' ',
799 'W','H','E','R','E',' ', '`','A','c','t','i','o','n','`',' ','=',
800 ' ','\'','%','s','\'',0};
805 if (!package->LastAction || strcmpW(package->LastAction,action))
807 row = MSI_QueryGetRecord(package->db, Query_t, action);
811 if (MSI_RecordIsNull(row,3))
813 msiobj_release(&row->hdr);
817 /* update the cached actionformat */
818 msi_free(package->ActionFormat);
819 package->ActionFormat = msi_dup_record_field(row,3);
821 msi_free(package->LastAction);
822 package->LastAction = strdupW(action);
824 msiobj_release(&row->hdr);
827 MSI_RecordSetStringW(record,0,package->ActionFormat);
829 MSI_FormatRecordW(package,record,message,&size);
831 row = MSI_CreateRecord(1);
832 MSI_RecordSetStringW(row,1,message);
834 MSI_ProcessMessage(package, INSTALLMESSAGE_ACTIONDATA, row);
836 msiobj_release(&row->hdr);
839 BOOL ACTION_VerifyComponentForAction( const MSICOMPONENT* comp, INSTALLSTATE check )
844 if (comp->ActionRequest == check)
850 BOOL ACTION_VerifyFeatureForAction( const MSIFEATURE* feature, INSTALLSTATE check )
855 if (feature->ActionRequest == check)
861 void reduce_to_longfilename(WCHAR* filename)
863 LPWSTR p = strchrW(filename,'|');
865 memmove(filename, p+1, (strlenW(p+1)+1)*sizeof(WCHAR));
868 LPWSTR create_component_advertise_string(MSIPACKAGE* package,
869 MSICOMPONENT* component, LPCWSTR feature)
871 static const WCHAR fmt[] = {'%','s','%','s','%','c','%','s',0};
872 WCHAR productid_85[21], component_85[21];
873 LPWSTR output = NULL;
877 /* > is used if there is a component GUID and < if not. */
882 CLSIDFromString(package->ProductCode, &clsid);
883 encode_base85_guid(&clsid, productid_85);
887 CLSIDFromString(component->ComponentId, &clsid);
888 encode_base85_guid(&clsid, component_85);
891 TRACE("prod=%s feat=%s comp=%s\n", debugstr_w(productid_85),
892 debugstr_w(feature), debugstr_w(component_85));
894 sz = 20 + lstrlenW(feature) + 20 + 3;
896 output = msi_alloc_zero(sz*sizeof(WCHAR));
898 sprintfW(output, fmt, productid_85, feature,
899 component?'>':'<', component_85);
904 /* update component state based on a feature change */
905 void ACTION_UpdateComponentStates(MSIPACKAGE *package, LPCWSTR szFeature)
907 INSTALLSTATE newstate;
911 feature = get_loaded_feature(package,szFeature);
915 newstate = feature->ActionRequest;
917 if (newstate == INSTALLSTATE_ABSENT)
918 newstate = INSTALLSTATE_UNKNOWN;
920 LIST_FOR_EACH_ENTRY( cl, &feature->Components, ComponentList, entry )
922 MSICOMPONENT* component = cl->component;
924 TRACE("MODIFYING(%i): Component %s (Installed %i, Action %i, Request %i)\n",
925 newstate, debugstr_w(component->Component), component->Installed,
926 component->Action, component->ActionRequest);
928 if (!component->Enabled)
931 if (newstate == INSTALLSTATE_LOCAL)
932 msi_component_set_state(package, component, INSTALLSTATE_LOCAL);
935 ComponentList *clist;
938 component->hasLocalFeature = FALSE;
940 msi_component_set_state(package, component, newstate);
942 /*if any other feature wants is local we need to set it local*/
943 LIST_FOR_EACH_ENTRY( f, &package->features, MSIFEATURE, entry )
945 if ( f->ActionRequest != INSTALLSTATE_LOCAL &&
946 f->ActionRequest != INSTALLSTATE_SOURCE )
951 LIST_FOR_EACH_ENTRY( clist, &f->Components, ComponentList, entry )
953 if ( clist->component == component &&
954 (f->ActionRequest == INSTALLSTATE_LOCAL ||
955 f->ActionRequest == INSTALLSTATE_SOURCE) )
957 TRACE("Saved by %s\n", debugstr_w(f->Feature));
958 component->hasLocalFeature = TRUE;
960 if (component->Attributes & msidbComponentAttributesOptional)
962 if (f->Attributes & msidbFeatureAttributesFavorSource)
963 msi_component_set_state(package, component, INSTALLSTATE_SOURCE);
965 msi_component_set_state(package, component, INSTALLSTATE_LOCAL);
967 else if (component->Attributes & msidbComponentAttributesSourceOnly)
968 msi_component_set_state(package, component, INSTALLSTATE_SOURCE);
970 msi_component_set_state(package, component, INSTALLSTATE_LOCAL);
975 TRACE("Result (%i): Component %s (Installed %i, Action %i, Request %i)\n",
976 newstate, debugstr_w(component->Component), component->Installed,
977 component->Action, component->ActionRequest);
981 UINT register_unique_action(MSIPACKAGE *package, LPCWSTR action)
984 LPWSTR *newbuf = NULL;
986 if (!package->script)
989 TRACE("Registering Action %s as having fun\n",debugstr_w(action));
991 count = package->script->UniqueActionsCount;
992 package->script->UniqueActionsCount++;
994 newbuf = msi_realloc( package->script->UniqueActions,
995 package->script->UniqueActionsCount* sizeof(LPWSTR));
997 newbuf = msi_alloc( sizeof(LPWSTR));
999 newbuf[count] = strdupW(action);
1000 package->script->UniqueActions = newbuf;
1002 return ERROR_SUCCESS;
1005 BOOL check_unique_action(const MSIPACKAGE *package, LPCWSTR action)
1009 if (!package->script)
1012 for (i = 0; i < package->script->UniqueActionsCount; i++)
1013 if (!strcmpW(package->script->UniqueActions[i],action))
1019 WCHAR* generate_error_string(MSIPACKAGE *package, UINT error, DWORD count, ... )
1021 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};
1031 row = MSI_QueryGetRecord(package->db, query, error);
1035 rec = MSI_CreateRecord(count+2);
1037 str = MSI_RecordGetString(row,1);
1038 MSI_RecordSetStringW(rec,0,str);
1039 msiobj_release( &row->hdr );
1040 MSI_RecordSetInteger(rec,1,error);
1043 for (i = 0; i < count; i++)
1045 str = va_arg(va,LPCWSTR);
1046 MSI_RecordSetStringW(rec,(i+2),str);
1050 MSI_FormatRecordW(package,rec,NULL,&size);
1053 data = msi_alloc(size*sizeof(WCHAR));
1055 MSI_FormatRecordW(package,rec,data,&size);
1058 msiobj_release( &rec->hdr );