ULARGE_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.
public value class ULARGE_INTEGER
public value class ULARGE_INTEGER
struct ULARGE_INTEGER
public struct ULARGE_INTEGER
type ULARGE_INTEGER = struct
Public Structure ULARGE_INTEGER
- Inheritance
-
ULARGE_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 |