简体   繁体   English

我可以在Visual C ++中使用graph.h,dos.h和bios.h吗?

[英]Can I use graph.h, dos.h, and bios.h in Visual C++?

Is it possible to use the following headers in Visual C++: 是否可以在Visual C ++中使用以下标头:

  • graph.h graph.h
  • dos.h DOS.H
  • bios.h bios.h

AFAIK, No way to use this in Visual C++, AFAIK,无法在Visual C ++中使用它,

In the Mean While , I would like you to focus on Open Watcom C++ cross-compiler (capable to create 16-bit codes in 32-bit environment). 在Mean While中,我希望您专注于Open Watcom C ++交叉编译器(能够在32位环境中创建16位代码)。 It's a free one, so try to use this 这是免费的,所以尽量使用它

http://www.openwatcom.org/index.php/Detailed_Contents http://www.openwatcom.org/index.php/Detailed_Contents

May be it helps... 可能有帮助......

graph.h and bios.h are old headers, used for 16-bit MS-DOS OS and are not provided with latest Microsoft compilers. graph.hbios.h是旧标题,用于16位MS-DOS操作系统,不提供最新的Microsoft编译器。 Header dos.h is provided with VS2010, and is located here: 头部dos.h随VS2010提供,位于:

  • ..\\Microsoft Visual Studio 10.0\\VC\\crt\\src\\dos.h .. \\ Microsoft Visual Studio 10.0 \\ VC \\ crt \\ src \\ dos.h
  • ..\\Microsoft Visual Studio 10.0\\VC\\include\\dos.h .. \\ Microsoft Visual Studio 10.0 \\ VC \\ include \\ dos.h

Is it possible to use the following headers in Visual C++: 是否可以在Visual C ++中使用以下标头:

 * graph.h * dos.h * bios.h 

You cannot use bios.h and graph.h , but you can use dos.h by following line: 不能使用 bios.hgraph.h ,但你可以通过以下行使用 dos.h

#include<dos>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM