- 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

@ -13,21 +13,21 @@
#define SICSVARLOG
#include <time.h>
/*---------------------------- birth and death ----------------------------*/
typedef struct __VarLog *pVarLog;
/*---------------------------- birth and death ----------------------------*/
typedef struct __VarLog *pVarLog;
int VarlogInit(pVarLog *self);
int VarlogDelete(pVarLog self);
int VarlogInit(pVarLog * self);
int VarlogDelete(pVarLog self);
/*----------------------------- operation -------------------------------*/
int VarlogClear(pVarLog self);
int VarlogAdd(pVarLog self, float fVal);
int VarlogClear(pVarLog self);
int VarlogAdd(pVarLog self, float fVal);
/*------------------------------ data recovery -------------------------*/
int VarlogLength(pVarLog self, int *iLength);
int VarlogGetTime(pVarLog self, time_t *tTime);
int VarlogGetVal(pVarLog self, float *fValues);
int VarlogGetMean(pVarLog self, float *fMean, float *fStdDev);
int VarlogLength(pVarLog self, int *iLength);
int VarlogGetTime(pVarLog self, time_t * tTime);
int VarlogGetVal(pVarLog self, float *fValues);
int VarlogGetMean(pVarLog self, float *fMean, float *fStdDev);
/*------------------------------ interpreter ---------------------------*/
int VarlogWrapper(pVarLog self,SConnection *pCon,
char *subcommand, char *sub2,char *pVarName);
int VarlogWrapper(pVarLog self, SConnection * pCon,
char *subcommand, char *sub2, char *pVarName);
#endif