| 230 | } |
| 231 | |
| 232 | RecErrT |
| 233 | RecSetRecordString(const char *name, const RecString rec_string, RecSourceT source, bool lock) |
| 234 | { |
| 235 | RecData data; |
| 236 | data.rec_string = rec_string; |
| 237 | return RecSetRecord(RECT_NULL, name, RECD_STRING, &data, nullptr, source, lock); |
| 238 | } |
| 239 | |
| 240 | RecErrT |
| 241 | RecSetRecordCounter(const char *name, RecCounter rec_counter, RecSourceT source, bool lock) |
no test coverage detected