我正在尝试编译一些在 MinGW 中使用fmemopen函数的代码。我发现MinGW没有这个功能。我需要一个等效于fmemopen()
.
我可以使用任何替代功能吗?
我正在尝试编译一些在 MinGW 中使用fmemopen函数的代码。我发现MinGW没有这个功能。我需要一个等效于fmemopen()
.
我可以使用任何替代功能吗?
由于内核中缺少功能,win32 上没有 fmemopen 等价物,我认为 cygwin 使用像这样的临时文件来实现它:https://github.com/kespindler/python-tesseract/blob/master/util-fmemopen。 C