Can I use graph.h, dos.h, and bios.h in Visual C++?
Is it possible t开发者_StackOverflowo use the following headers in Visual C++:
- graph.h
- dos.h
- bios.h
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
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
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>
精彩评论