mirror of https://git.ffmpeg.org/ffmpeg.git
win32: include the correct header in cmdutils.c
CommandLineToArgvW requires windows.h, include it directly
This commit is contained in:
parent
6ad2bafcfd
commit
ba9327ea65
|
@ -156,6 +156,7 @@ static const OptionDef* find_option(const OptionDef *po, const char *name){
|
|||
}
|
||||
|
||||
#if defined(_WIN32) && !defined(__MINGW32CE__)
|
||||
#include <windows.h>
|
||||
/* Will be leaked on exit */
|
||||
static char** win32_argv_utf8 = NULL;
|
||||
static int win32_argc = 0;
|
||||
|
|
Loading…
Reference in New Issue