Changeset 3592 for libcaca/trunk/caca/caca_conio.c
- Timestamp:
- Jul 30, 2009, 10:10:57 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/caca/caca_conio.c
r3588 r3592 107 107 } 108 108 109 /** \brief DOS conio.h delay() equivalent */ 110 void caca_conio_delay(int i) 111 { 112 conio_init(); 113 114 /* TODO: implement this function */ 115 } 116 109 117 /** \brief DOS conio.h delline() equivalent */ 110 118 void caca_conio_delline(void) … … 245 253 } 246 254 255 /** \brief DOS conio.h nosound() equivalent */ 256 void caca_conio_nosound(void) 257 { 258 conio_init(); 259 260 /* TODO: implement this function */ 261 } 262 247 263 /** \brief DOS stdio.h printf() equivalent */ 248 264 int caca_conio_printf(const char *format, ...) … … 285 301 /** \brief DOS conio.h _setcursortype() equivalent */ 286 302 void caca_conio__setcursortype(int cur_t) 303 { 304 conio_init(); 305 306 /* TODO: implement this function */ 307 } 308 309 /** \brief DOS conio.h sound() equivalent */ 310 void caca_conio_sound(int i) 287 311 { 288 312 conio_init();
Note: See TracChangeset
for help on using the changeset viewer.