| 479 | } |
| 480 | |
| 481 | RecErrT |
| 482 | RecGetRecordByte(const char *name, RecByte *rec_byte, bool lock) |
| 483 | { |
| 484 | RecErrT err; |
| 485 | RecData data; |
| 486 | |
| 487 | if ((err = RecGetRecord_Xmalloc(name, RECD_INT, &data, lock)) == REC_ERR_OKAY) { |
| 488 | *rec_byte = data.rec_int; |
| 489 | } |
| 490 | return err; |
| 491 | } |
| 492 | |
| 493 | RecErrT |
| 494 | RecGetRecordBool(const char *name, RecBool *rec_bool, bool lock) |
no test coverage detected