Fixed argv handling for cuiexe winelib programs.

This commit is contained in:
Eric Pouech 2000-04-29 14:18:34 +00:00 committed by Alexandre Julliard
parent 47d72ff801
commit ec4f57bec1

View file

@ -1268,7 +1268,7 @@ static int BuildSpec32File( FILE *outfile )
"{\n"
" extern int %s( int argc, char *argv[] );\n"
" extern int _ARGC;\n"
" extern char *_ARGV[];\n"
" extern char **_ARGV;\n"
" ExitProcess( %s( _ARGC, _ARGV ) );\n"
"}\n\n", init_func, init_func );
fprintf( outfile,