<StructLayout(LayoutKind.Sequential, Pack:=8)> Public Structure icsSpyTime
Dim sec As Byte
Dim min As Byte
Dim hour As Byte
Dim day As Byte
Dim month As Byte
Dim year As Byte
End Structure
[StructLayout(LayoutKind.Sequential,Pack=8)]
public struct icsSpyTime
{
public byte sec;
public byte min;
public byte hour;
public byte day;
public byte month;
public byte year;
}