> I thought the purpose of all those re-mappings would be that plain > Posix functions can still be used..? > It's already the Posix declaration where the function name > is the same as the structure name (stat).
Not possible for stat precisely because of function and struct sharing a name. That's why stat is used as # ifndef _WIN32 ret = stat(filename, &st); # else ret = win32_stat(filename, &st); # endif Such blocks are either to be copied across the application, or hidden behind yet another macro. _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".