bugfix in url parsing for HTTP.java
[org.ibex.core.git] / src / org / ibex / plat / PalmOS.java
1 // Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.ibex.plat;
3 import java.io.*;
4 import org.ibex.graphics.*;
5 import org.ibex.core.*;
6 import org.ibex.net.*;
7
8 /** Platform class for PalmOS devices */
9 public class PalmOS extends Platform {
10
11     public static int PilotMain(int cmd, int cmdBPB, int launchFlags) {
12         //Main.main(new String[] { });
13         return 0;
14     }
15
16     protected void _decodeJPEG(InputStream is, Picture p) {
17         throw new Error("unimplemented");
18     }
19
20 }