libConsole/Console.java
author Markus Bröker <mbroeker@largo.dyndns.tv>
Thu, 16 Apr 2009 12:49:12 +0200
changeset 53 6b3d7e3418c1
parent 49 77094ec383cf
child 55 2a20d0184041
permissions -rw-r--r--
getch.c renamed to cross_getch.c committer: Markus Bröker <mbroeker@largo.homelinux.org>

public class Console {
    public static native int getch ();
    static {
        System.loadLibrary ("Console");
    }
}