Generated from confvirtualmot.w with nuweb

This commit is contained in:
hauser_n
2006-05-01 04:59:03 +00:00
parent 228ec3fd9e
commit 54c9dc4c8f
2 changed files with 14 additions and 11 deletions

View File

@ -14,8 +14,8 @@
#include "sics.h"
int MakeConfigurableVirtualMotor(SConnection *pCon, SicsInterp *pSics,
void *data, int aargc, char *argv[]);
void *data, int aargc, char *argv[]);
int ConfigurableVirtualMotorAction(SConnection *pCon, SicsInterp *pSics,
void *data, int argc, char *argv[]);
void *data, int argc, char *argv[]);
#endif

View File

@ -5,15 +5,18 @@
-----------------------------------------------------------------------*/
typedef struct __CONFVIRTMOT {
pObjectDescriptor pDes;
pIDrivable pDriv;
char *scriptName;
char *readScript;
int motorList;
float targetValue;
int targetReached;
char scriptError[512];
int parseOK;
pObjectDescriptor pDes;
pIDrivable pDriv;
pICallBack pCall;
char *name;
char *scriptName;
char *readScript;
int motorList;
float targetValue;
int targetReached;
int posCount;
char scriptError[512];
int parseOK;
}ConfigurableVirtualMotor, *pConfigurableVirtualMotor;