LARGE_INTEGER Struct
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a 64-bit signed integer.
public value class LARGE_INTEGER
public value class LARGE_INTEGER
struct LARGE_INTEGER
public struct LARGE_INTEGER
type LARGE_INTEGER = struct
Public Structure LARGE_INTEGER
- Inheritance
-
LARGE_INTEGER
Examples
// rewind an IStream to the beginning
LARGE_INTEGER offset = new LARGE_INTEGER();
offset.QuadPart = 0;
ULARGE_INTEGER[] resultingPosition = new ULARGE_INTEGER[1];
resultingPosition[0] = new ULARGE_INTEGER();
_stream.Seek(offset, (uint) SeekOrigin.Begin, resultingPosition);
Fields
QuadPart |
Represents a 64-bit signed integer. |