win32: include the correct header in cmdutils.c

CommandLineToArgvW requires windows.h, include it directly
This commit is contained in:
Luca Barbato 2011-04-25 15:30:42 +02:00
parent 6ad2bafcfd
commit ba9327ea65
1 changed files with 1 additions and 0 deletions

View File

@ -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;