TEntryInformationOS
Entry information for the OS
Declaration
Source position: sysosh.inc line 36
Type
TEntryInformationOS = record
public
argc : LongInt;
argv : PPChar;
envp : PPChar;
stkptr : pointer;
stklen : SizeUInt;
haltproc : procedure(e: LongInt);
end
Description
TEntryInformationOS represents executable entry information for the current OS. This structure is OS dependent.
See also
Name | Description |
---|---|
LongInt | A signed 32-bits integer |
PChar | Pointer to null-terminated string. |
PChar | Pointer to null-terminated string. |
SizeUInt | Unsigned Integer type which fits for sizes |