------------------------------------------------------------------------- RecLinkConfigXXX -------------------------------------------------------------------------
| 261 | // RecLinkConfigXXX |
| 262 | //------------------------------------------------------------------------- |
| 263 | RecErrT |
| 264 | RecLinkConfigInt(const char *name, RecInt *rec_int) |
| 265 | { |
| 266 | if (RecGetRecordInt(name, rec_int) == REC_ERR_FAIL) { |
| 267 | return REC_ERR_FAIL; |
| 268 | } |
| 269 | return RecRegisterConfigUpdateCb(name, link_int, (void *)rec_int); |
| 270 | } |
| 271 | |
| 272 | RecErrT |
| 273 | RecLinkConfigInt32(const char *name, int32_t *p_int32) |
nothing calls this directly
no test coverage detected