JCL Help:ULARGE INTEGER
From Project JEDI Wiki
Jump to navigationJump to searchJCL Help: ULARGE_INTEGER Record
[+] JclBase.pas Records
[+] ULARGE_INTEGER Fields
Search in JCL Help
Search in all projects
Summary
The summary for this help topic does not exist, edit this page
Pascal
public ULARGE_INTEGER = record
case Integer of
0: (LowPart: LongWord;
HighPart: LongWord;);
1: (QuadPart: Int64;);
end;
Members
Members | Description |
LowPart: LongWord; | Low-order 32 bits. |
HighPart: LongWord; | High-order 32 bits. |
QuadPart: Int64; | Unsigned 64-bit integer. |
Description
The ULARGE_INTEGER structure is used to specify a 64-bit unsigned integer value.
About
Unit
Notes
The ULARGE_INTEGER structure is actually a union. If your compiler has built-in support for 64-bit integers, use the QuadPart member to store the 64-bit integer. Otherwise, use the LowPart and HighPart members to store the 64-bit integer.
Contribute to this help topic
This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page