win32: include the correct header in cmdutils.c

CommandLineToArgvW requires windows.h, include it directly
pull/2/head
Luca Barbato 14 years ago
parent 6ad2bafcfd
commit ba9327ea65
  1. 1
      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;

Loading…
Cancel
Save