libConsole/cross_getch.c
changeset 134 8325a0fc22cd
parent 93 66b3596f71b6
equal deleted inserted replaced
133:f46f9606dbfb 134:8325a0fc22cd
     8 #include <Console.h>
     8 #include <Console.h>
     9 
     9 
    10 #ifdef WIN32
    10 #ifdef WIN32
    11 #include <conio.h>
    11 #include <conio.h>
    12 
    12 
    13 int cross_getch ()
    13 static int cross_getch ()
    14 {
    14 {
    15     int ch = -1;
    15     int ch = -1;
    16 
    16 
    17     ch = getch ();
    17     ch = getch ();
    18 
    18