MinGW中有fmemopen()吗

发布于 2024-12-02 18:10:12 字数 210 浏览 1 评论 0原文

我正在尝试编译一些使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑叹一世浮沉 2024-12-09 18:10:12

由于内核中缺少功能,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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文