当前位置: 代码迷 >> C语言 >> Visual C++里面没有 bios.h 这个头文件吗?
  详细解决方案

Visual C++里面没有 bios.h 这个头文件吗?

热度:1418   发布时间:2007-07-14 22:57:31.0
Visual C++里面没有 bios.h 这个头文件吗?
Visual C++里面没有 bios.h 这个头文件吗?我运行后,是这个错误
d:\documents and settings\lr\桌面\lr@chome\21\21.c(2) : fatal error C1083: Cannot open include file: 'bios.h': No such file or directory
搜索更多相关的解决方案: bios  Visual  文件  

----------------解决方案--------------------------------------------------------
VC++里是没有bios.h这个头文件的,可以把下面的程序改一下来用:
#include <stdio.h>
#include <dos.h>
int main()
{
unsigned char scancode;
unsigned char charcode;
union REGS regs;
printf("Test of int 16 keyboard service\n");
printf("Press Ese to exit program\n");
while(charcode!=27) {
regs.h.ah=0;
int86(0x16,&regs,&regs);
scancode=regs.h.ah;
charcode=regs.h.al;
printf("scan:%.3d ASCII:%.3d %c\n",scancode,charcode,charcode);
}
return 0;
}
----------------解决方案--------------------------------------------------------
  相关解决方案