00001 00006 #ifndef INPUT_COMMON_H 00007 #define INPUT_COMMON_H 00008 00009 #include <wchar.h> 00010 00014 #define INPUT_COMMON_RESERVED 0xe000 00015 00016 enum 00017 { 00023 R_NULL = INPUT_COMMON_RESERVED, 00024 R_EOF 00025 } 00026 ; 00027 00031 void input_common_init( int (*ih)() ); 00032 00036 void input_common_destroy(); 00037 00047 wchar_t input_common_readch( int timed ); 00048 00054 void input_common_unreadch( wint_t ch ); 00055 00056 #endif
1.4.4