00001 /***************************************************************************** 00002 00003 Copyright (c) 2005 SensAble Technologies, Inc. All rights reserved. 00004 00005 OpenHaptics(TM) toolkit. The material embodied in this software and use of 00006 this software is subject to the terms and conditions of the clickthrough 00007 Development License Agreement. 00008 00009 For questions, comments or bug reports, go to forums at: 00010 http://dsc.sensable.com 00011 00012 @file conio.c 00013 00014 @brief Console functionality required by example code. 00015 00016 ******************************************************************************/ 00017 00018 #ifndef __CONIO_H_ 00019 #define __CONIO_H_ 00020 00021 #ifdef _cplusplus 00022 extern "C" { 00023 #endif // _cplusplus 00024 00025 int _kbhit(); 00026 int getch(); 00027 00028 #ifdef _cplusplus 00029 } 00030 #endif // _cplusplus 00031 00032 #endif // __CONIO_H 00033 00034 /******************************************************************************/