MinGW中有fmemopen()吗
我正在尝试编译一些使用 fmemopen MinGW 中的函数。我发现MinGW没有这个功能。我需要一个相当于 fmemopen()
的函数。
我可以使用其他功能吗?
I'm trying to compile some code that uses the fmemopen function in MinGW. I found out that this function is not available MinGW. I need a function equivalent to fmemopen()
.
Are there any alternative functions that I can use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于内核中缺少功能,win32 上没有 fmemopen 等效项,我认为 cygwin 使用像这样的临时文件来实现它:https://github.com/kespindler/python-tesseract/blob/master/util-fmemopen.c
there are no fmemopen equivalents on win32 because of missing functionality in the kernel, I think cygwin implements it using a temp file like this one: https://github.com/kespindler/python-tesseract/blob/master/util-fmemopen.c