- 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

43
codri.h
View File

@ -13,32 +13,21 @@
#define CHREDO -2
#define CHOK -3
typedef struct __CODRI *pCodri;
typedef struct __CODRI {
int (*Init)(pCodri self);
int (*Close)(pCodri self);
int (*Delete)(pCodri self);
int (*SetPar)(pCodri self,
char *parname,
float fValue);
int (*SetPar2)(pCodri self,
char *parname,
char *value);
int (*GetPar)(pCodri self,
char *parname,
char *pBuffer,
int iBufLen);
int (*CheckPar)(pCodri self,
char *parname);
int (*GetError)(pCodri self, int *iCode,
char *pError,
int iErrLen);
int (*TryFixIt)(pCodri self, int iCode);
int (*Halt)(pCodri self);
char *pParList;
void *pPrivate;
}Codri;
typedef struct __CODRI *pCodri;
typedef struct __CODRI {
int (*Init) (pCodri self);
int (*Close) (pCodri self);
int (*Delete) (pCodri self);
int (*SetPar) (pCodri self, char *parname, float fValue);
int (*SetPar2) (pCodri self, char *parname, char *value);
int (*GetPar) (pCodri self, char *parname, char *pBuffer, int iBufLen);
int (*CheckPar) (pCodri self, char *parname);
int (*GetError) (pCodri self, int *iCode, char *pError, int iErrLen);
int (*TryFixIt) (pCodri self, int iCode);
int (*Halt) (pCodri self);
char *pParList;
void *pPrivate;
} Codri;
#endif