使用 Turbo-C 的 C 语言的 Windows.h
我在 Turbo C 的包含文件夹中找不到 windows.h,因此无法使用 Win32 api
有人可以建议解决方法吗?
谢谢
I cannot find windows.h in my include folder of Turbo C and hence cannot work with the Win32 api's
Can someone please suggest a workaround?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以下载 Borland C++ 5.5。如果没记错的话,它可以“开箱即用”处理 Windows 编程(警告:但它不包含任何类型的 IDE,仅包含命令行工具)。
或者,您可以考虑几种替代方案中的任何一种,例如 Dev-C++、< a href="http://www.microsoft.com/express/Windows/" rel="nofollow noreferrer">Visual Studio Express、Cygwin,或数字火星。编辑:或 Code::Blocks、Ultimate++/TheIDE、NetBeans、或 Eclipse CDT。
You could download Borland C++ 5.5. If memory serves, it can handle Windows programming "out of the box" (Warning: but it doesn't include an IDE of any kind, only command-line tools).
Alternatively, you could look into any of several alternatives such as Dev-C++, Visual Studio Express, Cygwin, or Digital Mars. Edit: Or Code::Blocks, Ultimate++/TheIDE, NetBeans, or Eclipse CDT.
Turbo C 是一个传统产品。我建议继续前进。
但是,Windows 库和头文件随 Windows SDK 一起提供,您可以在 MSDN 上查找。
Turbo C is a legacy product. I would suggest moving on.
However, the Windows libraries and header files are shipped with the Windows SDK, which you can find on MSDN.
如果您想使用 Win32 API,那么使用 Visual Studio 可能会获得最佳效果(它将具有您需要的所有标头和库)。甚至还有免费版本。
If you want to work with Win32 APIs, you will probably get the best mileage using Visual Studio (which will have all of the headers and libraries you need). There is even a free edition available.