有人知道哪个网络包包含 winlive.h 吗?
我正在处理一个 C++ 小游戏解决方案,其中包含对 winlive.h 标头的引用。我确信它是网络包的一部分,但无法找到它。它不在windows sdk或platform sdk中。任何人可能以前见过这个并能指出我正确的方向吗? 谢谢
I am dealing with a c++ small game solution which contains references to winlive.h header. I'm sure it is part of a networking package, but haven't been able to track it down. It is not in windows sdk or platform sdk. Anyone may have have seen this before and can point me in the right direction?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只是注释掉缺少的头文件(winlive.h)的#include,编译器会抱怨什么函数调用?这可能会给你一个提示。甚至有可能不需要标头(删除它将使您的代码能够编译)。
If you just comment out the #include for the missing header file (winlive.h), what function calls does the compiler complain about? That will likely give you a hint. It's even possible the header is not needed (and removing it will result in your code being able to compile).