licensing cleanup (GPLv2)
[org.ibex.core.git] / src / org / ibex / plat / PalmOS.java
1 // Copyright 2000-2005 the Contributors, as shown in the revision logs.
2 // Licensed under the GNU General Public License version 2 ("the License").
3 // You may not use this file except in compliance with the License.
4
5 package org.ibex.plat;
6 import java.io.*;
7 import org.ibex.graphics.*;
8 import org.ibex.core.*;
9 import org.ibex.net.*;
10
11 /** Platform class for PalmOS devices */
12 public class PalmOS extends Platform {
13
14     public static int PilotMain(int cmd, int cmdBPB, int launchFlags) {
15         //Main.main(new String[] { });
16         return 0;
17     }
18
19     protected void _decodeJPEG(InputStream is, Picture p) {
20         throw new Error("unimplemented");
21     }
22
23 }