PORTS.H
资源名称:ports.zip [点击查看]
上传用户:mery1987
上传日期:2007-01-03
资源大小:3k
文件大小:1k
源码类别:
通讯编程
开发平台:
Visual C++
- #ifndef _PORTS_
- #define _PORTS_
- #pragma message Warning: port I/O not allowed in Windows NT
- #pragma link "ports.obj"
- //#pragma link "outport.obj"
- #ifdef __cplusplus
- extern "C" {
- #endif
- unsigned char inportb( unsigned short __portid );
- unsigned short inport ( unsigned short __portid );
- short int inp( unsigned short __portid );
- unsigned short inpw( unsigned short __portid );
- void outportb( unsigned short __portid, unsigned char __value );
- void outport ( unsigned short __portid, unsigned short __value );
- short int outp( unsigned short __portid, unsigned char __value );
- unsigned short outpw( unsigned short __portid, unsigned short __value );
- #ifdef __cplusplus
- }
- #endif
- #endif