- Adapted indenation to new agreed upon system
- Added support for second generation scriptcontext based counter
This commit is contained in:
30
stringdict.h
30
stringdict.h
@@ -13,31 +13,29 @@
|
||||
#ifndef SICSSTRINGDICT
|
||||
#define SICSSTRINGDICT
|
||||
|
||||
typedef struct __StringDict *pStringDict;
|
||||
typedef struct __StringDict *pStringDict;
|
||||
|
||||
|
||||
#line 6 "stringdict.w"
|
||||
|
||||
pStringDict CreateStringDict(void);
|
||||
void DeleteStringDict(pStringDict self);
|
||||
pStringDict CreateStringDict(void);
|
||||
void DeleteStringDict(pStringDict self);
|
||||
|
||||
int StringDictAddPair(pStringDict self, char *name, char *value);
|
||||
int StringDictExists(pStringDict self, char *name);
|
||||
int StringDictUpdate(pStringDict self, char *name, char *value);
|
||||
int StringDictGet(pStringDict self, char *name, char *pResult, int iLen);
|
||||
|
||||
int StringDictAddPair(pStringDict self, char *name, char *value);
|
||||
int StringDictExists(pStringDict self, char *name);
|
||||
int StringDictUpdate(pStringDict self, char *name, char *value);
|
||||
int StringDictGet(pStringDict self, char *name, char *pResult, int iLen);
|
||||
|
||||
/* the result of StringDictGetShort is only valid as long that the entry is not changed */
|
||||
char *StringDictGetShort(pStringDict self, char *name);
|
||||
|
||||
int StringDictGetAsNumber(pStringDict self, char *name, float *fVal);
|
||||
int StringDictDelete(pStringDict self, char *name);
|
||||
char *StringDictGetShort(pStringDict self, char *name);
|
||||
|
||||
const char *StringDictGetNext(pStringDict self,
|
||||
char *pValue, int iValLen);
|
||||
void StringDictKillScan(pStringDict self);
|
||||
int StringDictGetAsNumber(pStringDict self, char *name, float *fVal);
|
||||
int StringDictDelete(pStringDict self, char *name);
|
||||
|
||||
const char *StringDictGetNext(pStringDict self, char *pValue, int iValLen);
|
||||
void StringDictKillScan(pStringDict self);
|
||||
|
||||
#line 68 "stringdict.w"
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user