|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| kernel32.lib
| Header File
| winbase.h
| Unicode
| WinNT; Win95
| Platform Notes
| None
|
|
|
GetCommandLine
The GetCommandLine function returns a pointer to the command-line string for the current
process.
LPTSTR GetCommandLine(VOID)
Parameters
This function has no parameters.
Return Values
The return value is a pointer to the command-line string for the current
process.
Remarks
Non-Unicode console processes written in C can use the argc and argv arguments to access the command-line arguments. The parameters of the
command-line string, excluding the program name, are also available to such
non-Unicode applications as a parameter of the WinMain function. The reason for the Unicode exclusion from these options is that WinMain, argc, and argv use the LPSTR data type for parameters, not the LPTSTR datatype.
See Also
CreateProcess, WinMain
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|