- remote objects - new ev drivers for oxford IPS,ITC,ILM and LC M.Z. SKIPPED: psi/eve.c psi/eve.h psi/fsm.c psi/fsm.h psi/ilmdriv.c psi/ipsdriv.c psi/itcdriv.c psi/lcdriv.c psi/logger.c psi/logger.h psi/make_gen psi/oicom.c psi/oicom.h psi/psi.c psi/remob.c psi/remob.h psi/tecs/didi psi/tecs/make_crv.tcsh psi/tecs/make_gen psi/tecs/myc_buf.c psi/tecs/six.c psi/tecs/tecs.c psi/tecs/tecs_client.f psi/tecs/tecs_plot.f psi/tecs/term.c psi/tecs/pg_plus/xwdriv.c
52 lines
1.9 KiB
OpenEdge ABL
52 lines
1.9 KiB
OpenEdge ABL
|
|
#line 243 "evcontroller.w"
|
|
|
|
/*-------------------------------------------------------------------------
|
|
Environment controller datastructure
|
|
|
|
Mark Koennecke, Juli 1997
|
|
|
|
---------------------------------------------------------------------------*/
|
|
/*-------- Parameter defines */
|
|
#define TOLERANCE 0
|
|
#define ACCESS 1
|
|
#define ERRORHANDLER 2
|
|
#define INTERRUPT 3
|
|
#define UPLIMIT 4
|
|
#define LOWLIMIT 5
|
|
#define SAFEVALUE 6
|
|
#define MAXWAIT 7
|
|
#define SETTLE 8
|
|
|
|
|
|
#line 29 "evcontroller.w"
|
|
|
|
typedef struct __EVControl {
|
|
pObjectDescriptor pDes;
|
|
pIDrivable pDrivInt;
|
|
pEVInterface pEnvir;
|
|
pICallBack pCall;
|
|
int callCount;
|
|
pEVDriver pDriv;
|
|
EVMode eMode;
|
|
float fTarget;
|
|
time_t start;
|
|
time_t lastt;
|
|
char *pName;
|
|
char *driverName;
|
|
char *errorScript;
|
|
ObPar *pParam;
|
|
int iLog;
|
|
pVarLog pLog;
|
|
int iWarned;
|
|
int iTcl;
|
|
int iStop;
|
|
SCStore conn;
|
|
char *creationArgs;
|
|
void *pPrivate;
|
|
void (*KillPrivate)(void *pData);
|
|
} EVControl;
|
|
|
|
#line 261 "evcontroller.w"
|
|
|