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

发布于 2024-10-09 22:43:18 字数 95 浏览 0 评论 0原文

是否可以在 Visual C++ 中使用以下标头:

  • graph.h
  • dos.h
  • bios.h

Is it possible to use the following headers in Visual C++:

  • graph.h
  • dos.h
  • bios.h

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

就此别过 2024-10-16 22:43:18

AFAIK,无法在 Visual C++ 中使用它,

同时,
我希望您重点关注 Open Watcom C++ 交叉编译器(能够在 32 位环境中创建 16 位代码)。它是免费的,所以尝试使用这个

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

也许有帮助...

AFAIK, No way to use this in 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). It's a free one, so try to use this

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

May be it helps...

2024-10-16 22:43:18

graph.hbios.h 是旧标头,用于 16 位 MS-DOS 操作系统,最新的 Microsoft 编译器未提供。头文件 dos.h 随 VS2010 一起提供,位于以下位置:

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

graph.h and bios.h are old headers, used for 16-bit MS-DOS OS and are not provided with latest Microsoft compilers. Header dos.h is provided with VS2010, and is located here:

  • ..\Microsoft Visual Studio 10.0\VC\crt\src\dos.h
  • ..\Microsoft Visual Studio 10.0\VC\include\dos.h
爱的那么颓废 2024-10-16 22:43:18

是否可以使用以下
Visual C++ 中的标头:

<前><代码>* graph.h
* dos.h
* BIOS.h

不能使用 bios.hgraph.h,但您可以使用 dos.h 通过以下行:

#include<dos>

Is it possible to use the following
headers in 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:

#include<dos>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文