LARGE_INTEGER

LARGE_INTEGER

类型定义

Type LARGE_INTEGER ' 8 Bytes

lowpart As Long

highpart As Long

End Type

说明

This structure represents a 64-bit integer. The lowpart field is the lower 32 bits of the integer and the highpart field is the upper 32 bits of the integer.

注解

参考GetDiskFreeSpaceEx函数的注解

Top