Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The command line.
char * _acmdln;
wchar_t * _wcmdln;
#ifdef WPRFLAG
#define _tcmdln _wcmdln
#else
#define _tcmdln _acmdln
Remarks
These variables store the complete command line. _acmdln stores the data as a character string. _wcmdln stores the data as a wide character string. _tcmdln can be defined as either _acmdln or _wcmdln, depending on which is appropriate.