PORTS.H
上传用户:mery1987
上传日期:2007-01-03
资源大小:3k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #ifndef _PORTS_
  2. #define _PORTS_
  3. #pragma message Warning: port I/O not allowed in Windows NT
  4. #pragma link "ports.obj"
  5. //#pragma link "outport.obj"
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. unsigned char  inportb( unsigned short __portid );
  10. unsigned short inport ( unsigned short __portid );
  11. short int      inp( unsigned short __portid );
  12. unsigned short inpw( unsigned short __portid );
  13. void           outportb( unsigned short __portid, unsigned char __value );
  14. void           outport ( unsigned short __portid, unsigned short __value );
  15. short int      outp( unsigned short __portid, unsigned char __value );
  16. unsigned short outpw( unsigned short __portid, unsigned short __value );
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20. #endif