libConsole/Console.java
author Markus Bröker <mbroeker@largo.dyndns.tv>
Thu, 16 Apr 2009 12:49:12 +0200
changeset 52 1fa566e9d13f
parent 49 77094ec383cf
child 55 2a20d0184041
permissions -rw-r--r--
getch name conflict on windows platform * ::getch works for c++ in db_bridge, not here. committer: Markus Bröker <mbroeker@largo.homelinux.org>

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