reorganized file layout (part 2: edits)
[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 org.ibex.*;
4 import java.io.*;
5 import org.ibex.graphics.*;
6 import org.ibex.core.*;
7 import org.ibex.net.*;
8
9 /** Platform class for PalmOS devices */
10 public class PalmOS extends Platform {
11
12     public static int PilotMain(int cmd, int cmdBPB, int launchFlags) {
13         //Main.main(new String[] { });
14         return 0;
15     }
16
17     protected void _decodeJPEG(InputStream is, Picture p) {
18         throw new Error("unimplemented");
19     }
20
21 }