In LabWindows /CVI 5.5 "C for Virtual Instrumentation" can I get
system time with accuracy at millisecond?
The function:
int status = GetSystemTime(int *hours, int *minutes, int *seconds);
is not good for me.
Can I use the Windows API:
VOID GetSystemTime(
LPSYSTEMTIME lpSystemTime // address of system time structure
);
inside my program write in C?
Thank You