mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Minor improvements.
svn path=/trunk/; revision=700
This commit is contained in:
parent
a23adc0492
commit
7975fc7fe7
1 changed files with 6 additions and 5 deletions
|
@ -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]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue