| 282 | } |
| 283 | |
| 284 | RecErrT |
| 285 | RecLinkConfigFloat(const char *name, RecFloat *rec_float) |
| 286 | { |
| 287 | if (RecGetRecordFloat(name, rec_float) == REC_ERR_FAIL) { |
| 288 | return REC_ERR_FAIL; |
| 289 | } |
| 290 | return RecRegisterConfigUpdateCb(name, link_float, (void *)rec_float); |
| 291 | } |
| 292 | |
| 293 | RecErrT |
| 294 | RecLinkConfigCounter(const char *name, RecCounter *rec_counter) |
nothing calls this directly
no test coverage detected