Type OVERLAPPED
Internal As Long
InternalHigh As Long
offset As Long
OffsetHigh As Long
hEvent As Long
End Type
OVERLAPPED-type variables tell the file access functions what part of a file to read or write when asynchronous (overlapped) file access is used. Note that Windows 95 does not allow asynchronous file access for disk files, although Windows NT does. The actual offset is identified by combining offset and OffsetHigh in the formula (totaloffset) = OffsetHigh * 2^32 + offset (i.e., sticking the binary or hex values together).