<?xml version="1.0" encoding="UTF-8"?>
<pInstaller xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.handx.net/devtool/pInstaller/schema/pInstaller.xsd">
<!-- The previous two lines are required as the first two lines for any pInstaller project.  They establish that this is
an xml document which follows the pInstaller Schema-->
<!--First, we specify the product name -->
	<productName>Sample Palm App</productName>
<!-- Now we'll list our installation files. -->
<!-- First we indicate that we are describing an installation file -->
	<installationFile>
<!-- Now we specify the file name -->
		<fileName>SamplePalmApp.prc</fileName>
<!-- Now we specify the destination as $PALM_DEVICE  this is a special variable which will
place the file on the palm device, rather than the PC. -->
		<destination>$PALM_DEVICE</destination>
<!-- Each Installation file in this example is in fileGroup "0", which
indicates that it is a required file.  If we wanted users be able to select individual files for installation we
would create other File Groups in this xml document, and assign the files to those groups. -->
		<fileGroup>0</fileGroup>
<!-- close up this installation file -->
	</installationFile>
<!-- Now we indicate that we are describing another installation file -->
	<installationFile>
<!-- Now we specify the file name -->
		<fileName>SampleConduit.dll</fileName>
<!-- Now we specify the destination as $HOTSYNCDIR  this is a special variable which will
place the file in the HotSync directory.  Generally, this is the best place to install a conduit. -->
		<destination>$HOTSYNCDIR</destination>
<!-- Again, we specify that this is a required file. -->
		<fileGroup>0</fileGroup>
<!-- Now we indicate that this is a conduit -->
		<conduit>
<!-- Specify the fileName of the conduit. -->
		         <fileName>sampleConduit.dll</fileName>
<!-- Each conduit must be associated with a creatorID on the Palm.  Specify that here (DON'T USE THE SAMPLE ONE! -->
		         <creatorID>saPA</creatorID>
<!-- Assign a priority between 0 and 4 (lower numbers get called first).  Generally, stick with the default of 2 -->
		         <priority>2</priority>
<!-- Now specify the Display Name for your conduit -->
		         <name>Sample Palm App NiftySync Conduit</name>
<!-- Close up the conduit element -->
		</conduit>
<!-- close up this installation file -->
	</installationFile>
<!-- now we close up the pInstaller element-->
</pInstaller>
