Files
sics/sinqhmdriv.i
cvs f51588e2a7 - Refactored histogram memory code a little
- motor driver for ECB now fully working
- Fixed an anticollider bug
- Untested version of a driver for the Risoe TDC histogram memory
2003-01-31 16:23:54 +00:00

42 lines
1.1 KiB
OpenEdge ABL

#line 63 "sinqhmdriv.w"
/*--------------------------------------------------------------------------
S I N Q H M
A driver for the SINQ histogram memory.
Mark Koennecke, April 1997
copyright: see implementation file
----------------------------------------------------------------------------*/
#ifndef SINQHMDRIVER
#define SINQHMDRIVER
#line 22 "sinqhmdriv.w"
typedef struct __SinqHMDriv {
pCounter pCounter;
pSINQHM pMaster;
int iLastHMError;
int iLastCTError;
HistMode eHistMode;
int iBinWidth;
OverFlowMode eFlow;
} SinqHMDriv;
#line 76 "sinqhmdriv.w"
/*-------------------------------------------------------------------------*/
#line 58 "sinqhmdriv.w"
pHistDriver CreateSINQDriver(pStringDict pOption);
int isSINQHMDriv(pHistDriver test);
#line 78 "sinqhmdriv.w"
#endif