我如何找出哪个标头正在使用哪些功能?
我正在将一个大型项目移植到 Windows,但我被困在 unistd.h 上。我怀疑这段代码使用了大量 unistd 的功能,所以我认为我可以为它提供某种替代品。同时,我需要弄清楚代码正在使用标头的哪些功能。
有没有任何工具可以告诉您正在使用标头的哪些功能?
I am porting a large project to Windows, and I'm stuck on unistd.h. I doubt this code is using a great deal of unistd's functionality, so I think I could be able to provide some sort of replacements for it. Meanwhile, I need to figure out what features of the header the code is using.
Is there any tool that will tell you what features of a header are being used?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
注释#include“unistd.h”行。查看所有未编译的内容。
按要求:)
Comment #include "unistd.h" lines. See everything that is not compiled.
As requested :)