diff --git a/dlls/msi/custom.c b/dlls/msi/custom.c index 7366d71aa3f08d52f6c15595387e1fcebe1aead5..80066deb5dbccd91c5901488bbd8b258f61f2063 100644 --- a/dlls/msi/custom.c +++ b/dlls/msi/custom.c @@ -192,6 +192,11 @@ UINT ACTION_CustomAction(MSIPACKAGE *package,LPCWSTR action, BOOL execute) case 18: /*EXE file installed with package */ rc = HANDLE_CustomType18(package,source,target,type,action); break; + case 19: /* Error that halts install */ + deformat_string(package,target,&deformated); + MessageBoxW(NULL,deformated,NULL,MB_OK); + rc = ERROR_FUNCTION_FAILED; + break; case 50: /*EXE file specified by a property value */ rc = HANDLE_CustomType50(package,source,target,type,action); break;