installationservices/swi/test/tuiscriptadaptors/scripts/handleinstall_setfinalcancel.xml
changeset 0 ba25891c3a9e
equal deleted inserted replaced
-1:000000000000 0:ba25891c3a9e
       
     1 <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
       
     2 <!-- simple.sis: Installation of a simple text file -->
       
     3 <Script>
       
     4 	<!-- Accept installation prompt -->
       
     5 	<dialog name="DisplayInstall">
       
     6 		<return type="TBool">true</return>
       
     7 	</dialog>
       
     8 	<!-- Choose the first language by its index -->
       
     9 	<dialog name="DisplayLanguage">
       
    10 		<return type="TInt">0</return>
       
    11 	</dialog>
       
    12 	<!-- Choose drive C which is the first in the list -->
       
    13 	<dialog name="DisplayDrive">
       
    14 		<return type="TInt"> c</return>
       
    15 	</dialog>
       
    16 	<!-- Display text file, ask user to confirm or abort -->
       
    17 	<dialog name="DisplayText">
       
    18 		<return type="TBool">true</return> 
       
    19 	</dialog>
       
    20 	<dialog name="DisplayUpgrade">
       
    21 		<return type="TBool">true</return> 
       
    22 	</dialog>
       
    23 	<!-- Display security warning, continue if possible -->
       
    24 	<dialog name="DisplaySecurityWarning">
       
    25 		<return type="TBool">true</return>
       
    26 	</dialog>
       
    27 	<!-- Display Grant Capabilities dialog -->
       
    28 	<dialog name="DisplayGrantCapabilities">
       
    29 		<return type="TBool">true</return>
       
    30 	</dialog>
       
    31 	<!-- Display Handle Install Event dialog -->
       
    32 	<dialog name="HandleInstallEvent">
       
    33 		<updateprogressfinalreturn type="TBool">false</updateprogressfinalreturn>
       
    34 	</dialog>
       
    35 </Script>