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

@ -10,7 +10,7 @@ void debug_printf(char* fmt, ...)
{
va_list args;
char buffer[255];
va_start(args,fmt);
vsprintf(buffer,fmt,args);
WriteConsoleA(OutputHandle, buffer, strlen(buffer), NULL, NULL);
@ -21,17 +21,18 @@ void debug_printf(char* fmt, ...)
void main(int argc, char* argv[])
{
int i;
AllocConsole();
InputHandle = GetStdHandle(STD_INPUT_HANDLE);
OutputHandle = GetStdHandle(STD_OUTPUT_HANDLE);
printf("GetCommandLineA() %s\n",GetCommandLineA());
debug_printf("GetCommandLineA() %s\n",GetCommandLineA());
debug_printf("argc %d\n", argc);
for (i=0; i<argc; i++)
{
debug_printf("Args: %x\n",argv[i]);
debug_printf("Args: '%s'\n",argv[i]);
debug_printf("Argv[%d]: %x\n",i,argv[i]);
debug_printf("Argv[%d]: '%s'\n",i,argv[i]);
}
}