| 309 | } |
| 310 | |
| 311 | RecErrT |
| 312 | RecLinkConfigByte(const char *name, RecByte *rec_byte) |
| 313 | { |
| 314 | if (RecGetRecordByte(name, rec_byte) == REC_ERR_FAIL) { |
| 315 | return REC_ERR_FAIL; |
| 316 | } |
| 317 | return RecRegisterConfigUpdateCb(name, link_byte, (void *)rec_byte); |
| 318 | } |
| 319 | |
| 320 | //------------------------------------------------------------------------- |
| 321 | // RecRegisterConfigUpdateCb |
nothing calls this directly
no test coverage detected