propose-patch
[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
6 /** Platform class for PalmOS devices */
7 public class PalmOS extends Platform {
8
9     public static int PilotMain(int cmd, int cmdBPB, int launchFlags) {
10         //Main.main(new String[] { });
11         return 0;
12     }
13
14     protected void _decodeJPEG(InputStream is, Picture p) {
15         throw new Error("unimplemented");
16     }
17
18 }