diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-11 17:33:13 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-11 17:33:13 +0200 |
commit | 890f782323849b2ae01cd705312d54a4a0e348fe (patch) | |
tree | 220604babca36e229cc64e9926ff9ebb44f694cd /obj.h | |
parent | a7860f4dab1afcf94698bc2f52413e94eed64b52 (diff) | |
download | rsyslog-890f782323849b2ae01cd705312d54a4a0e348fe.tar.gz rsyslog-890f782323849b2ae01cd705312d54a4a0e348fe.tar.xz rsyslog-890f782323849b2ae01cd705312d54a4a0e348fe.zip |
some cleanup
Diffstat (limited to 'obj.h')
-rw-r--r-- | obj.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -104,13 +104,13 @@ BEGINinterface(obj) /* name must also be changed in ENDinterface macro! */ rsRetVal (*SerializeProp)(strm_t *pStrm, uchar *pszPropName, propType_t propType, void *pUsr); rsRetVal (*EndSerialize)(strm_t *pStrm); rsRetVal (*RegisterObj)(uchar *pszObjName, objInfo_t *pInfo); - rsRetVal (*UnregisterObj)(uchar *pszObjName, objInfo_t *pInfo); + rsRetVal (*UnregisterObj)(uchar *pszObjName); rsRetVal (*Deserialize)(void *ppObj, uchar *pszTypeExpected, strm_t *pStrm, rsRetVal (*fFixup)(obj_t*,void*), void *pUsr); rsRetVal (*DeserializePropBag)(obj_t *pObj, strm_t *pStrm); rsRetVal (*SetName)(obj_t *pThis, uchar *pszName); uchar * (*GetName)(obj_t *pThis); ENDinterface(obj) -#define objCURR_IF_VERSION 1 /* increment whenever you change the interface structure! */ +#define objCURR_IF_VERSION 2 /* increment whenever you change the interface structure! */ /* prototypes */ |