Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.12 KB

acmdln-tcmdln-wcmdln.md

File metadata and controls

35 lines (27 loc) · 1.12 KB
description title ms.date api_name api_location api_type topic_type f1_keywords helpviewer_keywords ms.assetid
Learn more about: _acmdln, _tcmdln, _wcmdln
_acmdln, _tcmdln, _wcmdln
11/04/2016
_wcmdln
_acmdln
msvcrt.dll
DLLExport
apiref
_acmdln
_wcmdln
_tcmdln
_wcmdln global variable
wcmdln global variable
_acmdln global variable
_tcmdln global variable
tcmdln global variable
acmdln global variable
4fc0a6a0-3f93-420a-a19f-5276061ba539

_acmdln, _tcmdln, _wcmdln

Internal CRT global variable. The command line.

Syntax

char * _acmdln;
wchar_t * _wcmdln;

#ifdef WPRFLAG
   #define _tcmdln _wcmdln
#else
   #define _tcmdln _acmdln

Remarks

These CRT internal variables store the complete command line. They're exposed in the exported symbols for the CRT, but aren't intended for use in your code. _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.

See also

Global variables