| 214 | } |
| 215 | |
| 216 | RecErrT |
| 217 | RecSetRecordInt(const char *name, RecInt rec_int, RecSourceT source, bool lock) |
| 218 | { |
| 219 | RecData data; |
| 220 | data.rec_int = rec_int; |
| 221 | return RecSetRecord(RECT_NULL, name, RECD_INT, &data, nullptr, source, lock); |
| 222 | } |
| 223 | |
| 224 | RecErrT |
| 225 | RecSetRecordFloat(const char *name, RecFloat rec_float, RecSourceT source, bool lock) |
no test coverage detected