Command line arguments..
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
Hi there. Does anyone know how to treat a command line argument as a single argument, instead of the default mechanism of providing space delimited tokens, as in the standard argn/v implementation. James.
-
Hi there. Does anyone know how to treat a command line argument as a single argument, instead of the default mechanism of providing space delimited tokens, as in the standard argn/v implementation. James.
How about the
GetCommandLine()
API call? -
How about the
GetCommandLine()
API call?Thanks. Will check that out. James