K8047: how to interpret ReadData's time fields?

Hello
How should I interpret the two time-related fields (LSB, MSB) I get when calling the ReadData method of K8047.dll? I read the PDF, and guess LSB/MSB stand for Least/Most Significant Byte, but that doesn’t push me forward…

Any help (or code sample: VB, C…) appreciated!

Kriss

(MSB * 256 + LSB) * 10 = the time counter value in ms…

Thanks!