<StructLayout(LayoutKind.Sequential, Pack:=1)> Public Structure timestamp
Dim seconds_msb As UInt16
Dim seconds_lsb As UInt32
Dim nanoseconds As UInt32
End Structure
[StructLayout(LayoutKind.Sequential,Pack=1)]
public struct timestamp
{
public UInt16 seconds_msb;
public UInt32 seconds_lsb;
public UInt32 nanoseconds;
}
Remarks
Item
Description
seconds_msb
Most significant portion of Integer value of the time stamp in seconds.
seconds_lsb
Least significant portion of Integer value of the time stamp in seconds.