home *** CD-ROM | disk | FTP | other *** search
/ Total Destruction / Total_Destruction.iso / addons / Lccwin32.exe / Lccwin32 / lccpub / include / conio.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-17  |  779 b   |  30 lines

  1. #ifndef _LCC_CONIO
  2. #define _LCC_CONIO
  3. char *  _cgets(char *);
  4. int cprintf(char *, ...);
  5. int cputs(char *);
  6. int cscanf(char *, ...);
  7. #define _cprintf cprintf
  8. #define _cputs cputs
  9. #define _cscanf cscanf
  10. int getch(void);
  11. int  getche(void);
  12. int _np(unsigned short);
  13. unsigned short inpw(unsigned short);
  14. unsigned long  inpd(unsigned short);
  15. int _kbhit(void);
  16. int outp(unsigned short, int);
  17. unsigned short outpw(unsigned short, unsigned short);
  18. unsigned long outpd(unsigned short, unsigned long);
  19. int _inp(unsigned short i);
  20. unsigned short _inpw(unsigned short i);
  21. unsigned long _inpd(unsigned short i);
  22. int putch(int);
  23. int ungetch(int);
  24. #define _getch    getch
  25. #define _getche    getche
  26. #define _kbhit    kbhit
  27. #define _putch    putch
  28. #define _ungetch ungetch
  29. #endif
  30.