开发者

Is there fmemopen() in MinGW

开发者 https://www.devze.com 2023-04-02 18:58 出处:网络
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().

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?


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

0

精彩评论

暂无评论...
验证码 换一张
取 消