Header File
stdlib.h
Syntax
extern char **_argv;
extern wchar_t ** _wargv
Description
_argv points to an array containing the original command-line arguments (the elements of argv[]) passed to main when the program starts.
_wargv is the Unicode version of _argv.
Portability
|
POSIX |
Win32 |
ANSI C |
ANSI C++ |
_argv |
|
+ |
|
|
_wargv |
|
NT only |
|
|
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
What do you think about this topic? Send feedback!
|