diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2011-04-25 15:30:42 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2011-04-25 21:57:30 +0200 |
commit | ba9327ea65310d9e15acb5791980a7d766c9f986 (patch) | |
tree | 0298e8e49deb76ce24b82fc6d30e62e8096e6210 /cmdutils.c | |
parent | 6ad2bafcfd4c90cc0e3923f90699aa77d3cf7803 (diff) | |
download | ffmpeg-ba9327ea65310d9e15acb5791980a7d766c9f986.tar.gz |
win32: include the correct header in cmdutils.c
CommandLineToArgvW requires windows.h, include it directly
Diffstat (limited to 'cmdutils.c')
-rw-r--r-- | cmdutils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmdutils.c b/cmdutils.c index f25f61d4e5..d15aba0635 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -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; |