mass rename and rebranding from xwt to ibex - fixed to use ixt files
[org.ibex.core.git] / src / org / ibex / plat / PalmOS.java
diff --git a/src/org/ibex/plat/PalmOS.java b/src/org/ibex/plat/PalmOS.java
new file mode 100644 (file)
index 0000000..85e67da
--- /dev/null
@@ -0,0 +1,18 @@
+// Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL]
+package org.ibex.plat;
+import org.ibex.*;
+import java.io.*;
+
+/** Platform class for PalmOS devices */
+public class PalmOS extends Platform {
+
+    public static int PilotMain(int cmd, int cmdBPB, int launchFlags) {
+        //Main.main(new String[] { });
+        return 0;
+    }
+
+    protected void _decodeJPEG(InputStream is, Picture p) {
+        throw new Error("unimplemented");
+    }
+
+}