| 291 | } |
| 292 | |
| 293 | RecErrT |
| 294 | RecLinkConfigCounter(const char *name, RecCounter *rec_counter) |
| 295 | { |
| 296 | if (RecGetRecordCounter(name, rec_counter) == REC_ERR_FAIL) { |
| 297 | return REC_ERR_FAIL; |
| 298 | } |
| 299 | return RecRegisterConfigUpdateCb(name, link_counter, (void *)rec_counter); |
| 300 | } |
| 301 | |
| 302 | RecErrT |
| 303 | RecLinkConfigString(const char *name, RecString *rec_string) |
nothing calls this directly
no test coverage detected