installationservices/swi/test/tuiscriptadaptors/scripts/gpl.xml
changeset 0 ba25891c3a9e
equal deleted inserted replaced
-1:000000000000 0:ba25891c3a9e
       
     1 <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
       
     2 <!-- gpl[nc].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 security warning, continue if possible -->
       
    17 	<dialog name="DisplaySecurityWarning">
       
    18 		<return type="TBool">true</return>
       
    19 	</dialog>
       
    20 </Script>