blob: 6b2de7e59fb28648da8aab717571d303ccb6a445 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?xml version="1.0" encoding="utf-8"?>
<jnlp
spec="1.0+"
codebase="http://www.newdawnsoftware.com/resources/jinput/webstart/"
href="jinput.jnlp">
<information>
<title>JInput webstart demo</title>
<vendor>New Dawn Software</vendor>
<homepage href="http://www.newdawnsoftware.com"/>
<description>The readtest demo from jinput as a webstartable demo</description>
<description kind="short">JInput JWS demo</description>
<icon href="mini.jpg"/>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/>
<jar href="jinput-test.jar"/>
<jar href="jinput.jar"/>
</resources>
<resources os="Windows" arch="x86_64 x86">
<nativelib href="jinput-windows-native.jar"/>
</resources>
<resources os="Linux" arch="i386 ia64 x84_64">
<nativelib href="jinput-linux-native.jar"/>
</resources>
<resources os="Mac OS">
<nativelib href="jinput-osx-native.jar"/>
</resources>
<application-desc main-class="net.java.games.input.test.ControllerReadTest"/>
</jnlp>
|