Entry information for the OS.
Source position: sysosh.inc line 36
type TEntryInformationOS = record |
||
argc: LongInt; |
|
Number of command-line arguments. |
argv: PPAnsiChar; |
|
Pointer to Array of command-line arguments. |
envp: PPAnsiChar; |
|
Pointer to array of environment variables. |
stkptr: pointer; |
|
Initial stack pointer. |
stklen: SizeUInt; |
|
Stack length. |
haltproc: procedure( |
|
Procedure to call to exit program. |
e: LongInt |
||
); |
||
end; |
TEntryInformationOS represents executable entry information for the current OS. This structure is OS dependent.