Auszug aus counters.cpp:(Vorher)
int TGenericDevice::PollDevice(void)
KillTimer(hWndFrame,DeviceTimerIdStart + GetId());
if(!bDeviceActive) return R_Failure;
switch(IOCTL(iocIsCountingReady)) {
SetTimer(hWndFrame,DeviceTimerIdStart + GetId(),uAskTime,NULL);
case 1: // time counter ready
IOCTL(iocReadCounts,counts);
IOCTL(iocReadTicks,ticks);
time = (float)ticks / GetTicksPerSecond();
time = fExposureTime + time;