在哪里可以下载 Visual C++ 的 CONIO.H 克隆库/源代码2008 和 Win32?
我需要将基于 Turbo C++3.0 的 DOS 程序转换为 Win32 和 VC++2008。
它有一个基于文本的 GUI 界面。
在哪里可以下载 Visual C++ 2008 和 Win32 的 CONIO.H 克隆库/源代码?
I need to convert a Turbo C++3.0 based DOS program into Win32 and VC++2008.
It has a text-based GUI interface.
Where can I download the CONIO.H clone library/source code for Visual C++ 2008 and Win32?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CONIO.H 是 Borland 特定的头文件。你不会找到克隆人。我将删除 #include 语句并修复对其定义的函数的调用。
变化不应该如此剧烈。有点像用
getchar()
替换getc()
。它们的行为不同,因为后者需要按 Enter 键,但无论如何您都处于移植阶段。The CONIO.H is a Borland specific header file. You won't find a clone. I would remove the #include statement and fix the calls to functions that it defined.
The changes should not be so dramatic. Somewhat like replaceing
getc()
bygetchar()
. They behave different, since the latter requires pressing the Enter key, but you're in a porting phase anyway.