- Adapted indenation to new agreed upon system

- Added support for second generation scriptcontext based counter
This commit is contained in:
koennecke
2009-02-13 09:00:03 +00:00
parent a3dcad2bfa
commit 91d4af0541
405 changed files with 88101 additions and 88173 deletions

View File

@ -11,17 +11,17 @@
#ifndef XYTABLE
#define XYTABLE
typedef struct __XYTABLE *pXYTable;
typedef struct __XYTABLE *pXYTable;
/*------------------------------------------------------------------------*/
int XYClear(pXYTable self);
int XYAdd(pXYTable self, float x, float y);
int XYWrite(pXYTable self, FILE *fd);
int XYSendUU(pXYTable self, SConnection *pCon);
int XYList(pXYTable self, SConnection *pCon);
int XYClear(pXYTable self);
int XYAdd(pXYTable self, float x, float y);
int XYWrite(pXYTable self, FILE * fd);
int XYSendUU(pXYTable self, SConnection * pCon);
int XYList(pXYTable self, SConnection * pCon);
/*----------------------- interpreter interface --------------------------*/
int XYFactory(SConnection *pCon, SicsInterp *pSics, void *pData,
int argc, char *argv[]);
int XYAction(SConnection *pCon, SicsInterp *pSics, void *pData,
int argc, char *argv[]);
int XYFactory(SConnection * pCon, SicsInterp * pSics, void *pData,
int argc, char *argv[]);
int XYAction(SConnection * pCon, SicsInterp * pSics, void *pData,
int argc, char *argv[]);
#endif