1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-23 07:58:05 +02:00

ExportFFmpeg.cpp: Define snprintf as _snprintf on Windows.

This commit is contained in:
benjamin.drung@gmail.com 2014-05-31 14:41:59 +00:00
parent f36e961bb1
commit 32454b3e6e

View File

@ -49,6 +49,10 @@ function.
#include "ExportFFmpegDialogs.h"
#if defined(WIN32)
#define snprintf _snprintf
#endif
#if defined(USE_FFMPEG)
extern FFmpegLibs *FFmpegLibsInst;