e1da9135241e7c5cb21c4b6778fd9264f013ec76
[org.ibex.core.git] / src / org / xwt / plat / PalmOS.java
1 // Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.xwt.plat;
3 import org.xwt.*;
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 }