Minor improvements.

svn path=/trunk/; revision=700
This commit is contained in:
Eric Kohl 1999-10-16 12:35:10 +00:00
parent a23adc0492
commit 7975fc7fe7

View file

@ -28,10 +28,11 @@ void main(int argc, char* argv[])
printf("GetCommandLineA() %s\n",GetCommandLineA()); printf("GetCommandLineA() %s\n",GetCommandLineA());
debug_printf("GetCommandLineA() %s\n",GetCommandLineA()); debug_printf("GetCommandLineA() %s\n",GetCommandLineA());
debug_printf("argc %d\n", argc);
for (i=0; i<argc; i++) for (i=0; i<argc; i++)
{ {
debug_printf("Args: %x\n",argv[i]); debug_printf("Argv[%d]: %x\n",i,argv[i]);
debug_printf("Args: '%s'\n",argv[i]); debug_printf("Argv[%d]: '%s'\n",i,argv[i]);
} }
} }