installationservices/swi/test/tuiscriptadaptors/scripts/upgrade_drive_x.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 X which is the first in the list -->
       
    13 	<dialog name="DisplayDrive">
       
    14 		<return type="TInt">x</return>
       
    15 	</dialog>
       
    16 	<dialog name="DisplayUpgrade">
       
    17 		<return type="TBool">true</return> 
       
    18 	</dialog>
       
    19 	<dialog name="DisplayText">
       
    20 		<return type="TBool">true</return> 
       
    21 	</dialog>
       
    22         <dialog name="DisplayQuestion">
       
    23 		<return type="TBool">true</return> 
       
    24 	</dialog>
       
    25 	<!-- Display security warning, continue if possible -->
       
    26 	<dialog name="DisplaySecurityWarning">
       
    27 		<return type="TBool">true</return>
       
    28 	</dialog>
       
    29 </Script>