conio.h
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:1k
源码类别:

操作系统开发

开发平台:

Visual C++

  1. /***
  2. *conio.h - console and port I/O declarations
  3. *
  4. * Copyright (c) 1985-1990, Microsoft Corporation.  All rights reserved.
  5. *
  6. *Purpose:
  7. * This include file contains the function declarations for
  8. * the MS C V2.03 compatible console and port I/O routines.
  9. *
  10. ****/
  11. #if defined(_DLL) && !defined(_MT)
  12. #error Cannot define _DLL without _MT
  13. #endif
  14. #ifdef _MT
  15. #define _FAR_ _far
  16. #else
  17. #define _FAR_
  18. #endif
  19. /* function prototypes */
  20. char _FAR_ * _FAR_ _cdecl cgets(char _FAR_ *);
  21. int _FAR_ _cdecl cprintf(const char _FAR_ *, ...);
  22. int _FAR_ _cdecl cputs(const char _FAR_ *);
  23. int _FAR_ _cdecl cscanf(const char _FAR_ *, ...);
  24. int _FAR_ _cdecl getch(void);
  25. int _FAR_ _cdecl getche(void);
  26. int _FAR_ _cdecl inp(unsigned);
  27. unsigned _FAR_ _cdecl inpw(unsigned);
  28. int _FAR_ _cdecl kbhit(void);
  29. int _FAR_ _cdecl outp(unsigned, int);
  30. unsigned _FAR_ _cdecl outpw(unsigned, unsigned);
  31. int _FAR_ _cdecl putch(int);
  32. int _FAR_ _cdecl ungetch(int);