2003/09/19 05:01:38
[org.ibex.core.git] / src / org / xwt / plat / GCJ.java
index 98f3d9b..9484439 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL]
+// Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
 package org.xwt.plat;
 
 import org.xwt.*;
@@ -21,6 +21,9 @@ public abstract class GCJ extends Platform {
 
     protected org.xwt.Weak _getWeak(Object o) { return new Java2Weak(o); }
 
+    protected native InputStream _getBuiltinInputStream();
+    protected native InputStream _getFreetypeInputStream();
+
     private static class Java2Weak extends java.lang.ref.WeakReference implements org.xwt.Weak {
         public Java2Weak(Object o) { super(o); }
     }