我可以在 Visual C 中使用 graph.h、dos.h 和 bios.h 吗?
是否可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
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...
graph.h
和bios.h
是旧标头,用于 16 位 MS-DOS 操作系统,最新的 Microsoft 编译器未提供。头文件dos.h
随 VS2010 一起提供,位于以下位置:graph.h
andbios.h
are old headers, used for 16-bit MS-DOS OS and are not provided with latest Microsoft compilers. Headerdos.h
is provided with VS2010, and is located here:您不能使用 bios.h 和 graph.h,但您可以使用 dos.h 通过以下行:
You cannot use bios.h and graph.h, but you can use dos.h by following line: