JCL Help:ULARGE INTEGER

From Project JEDI Wiki
Jump to navigationJump to search


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

JclBase


Navigation

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