diff -r 44702aa24113 -r 17a171fe7c56 src/objacces.c --- a/src/objacces.c Thu Sep 24 09:29:07 2009 +0200 +++ b/src/objacces.c Thu Sep 24 10:03:07 2009 +0200 @@ -168,30 +168,6 @@ } } -UNS32 getODentry( CO_Data* OD, - UNS16 wIndex, - UNS8 bSubindex, - void * pDestData, - UNS32 * pExpectedSize, - UNS8 * pDataType, - UNS8 checkAccess) -{ - return _getODentry( OD, wIndex, bSubindex, pDestData, pExpectedSize, - pDataType, checkAccess, 1); -} - -UNS32 readLocalDict( CO_Data* OD, - UNS16 wIndex, - UNS8 bSubindex, - void * pDestData, - UNS32 * pExpectedSize, - UNS8 * pDataType, - UNS8 checkAccess) -{ - return _getODentry( OD, wIndex, bSubindex, pDestData, pExpectedSize, - pDataType, checkAccess, 0); -} - UNS32 _setODentry( CO_Data* d, UNS16 wIndex, UNS8 bSubindex, @@ -285,27 +261,6 @@ } } -UNS32 setODentry( CO_Data* d, - UNS16 wIndex, - UNS8 bSubindex, - void * pSourceData, - UNS32 * pExpectedSize, - UNS8 checkAccess) -{ - return _setODentry( d, wIndex, bSubindex, pSourceData, pExpectedSize, - checkAccess, 1); -} - -UNS32 writeLocalDict( CO_Data* d, - UNS16 wIndex, - UNS8 bSubindex, - void * pSourceData, - UNS32 * pExpectedSize, - UNS8 checkAccess) -{ - return _setODentry( d, wIndex, bSubindex, pSourceData, pExpectedSize, checkAccess, 0); -} - const indextable * scanIndexOD (CO_Data* d, UNS16 wIndex, UNS32 *errorCode, ODCallback_t **Callback) { return (*d->scanIndexOD)(wIndex, errorCode, Callback);