22 #ifndef MYTHDTO_RECORDING_H 23 #define MYTHDTO_RECORDING_H 25 #include "../../mythtypes.h" 29 void SetRecording_RecordId(
Myth::Recording *obj, uint32_t *val) { obj->recordId = *val; }
30 void SetRecording_Priority(
Myth::Recording *obj, int32_t *val) { obj->priority = *val; }
31 void SetRecording_Status(
Myth::Recording *obj, int8_t *val) { obj->status = *val; }
32 void SetRecording_EncoderId(
Myth::Recording *obj, uint32_t *val) { obj->encoderId = *val; }
33 void SetRecording_RecType(
Myth::Recording *obj, uint8_t *val) { obj->recType = *val; }
34 void SetRecording_DupInType(
Myth::Recording *obj, uint8_t *val) { obj->dupInType = *val; }
35 void SetRecording_DupMethod(
Myth::Recording *obj, uint8_t *val) { obj->dupMethod = *val; }
36 void SetRecording_StartTs(
Myth::Recording *obj, time_t *val) { obj->startTs = *val; }
37 void SetRecording_EndTs(
Myth::Recording *obj, time_t *val) { obj->endTs = *val; }
38 void SetRecording_Profile(
Myth::Recording *obj,
const char *val) { obj->profile = val; }
39 void SetRecording_RecGroup(
Myth::Recording *obj,
const char *val) { obj->recGroup = val; }
40 void SetRecording_StorageGroup(
Myth::Recording *obj,
const char *val) { obj->storageGroup = val; }
41 void SetRecording_PlayGroup(
Myth::Recording *obj,
const char *val) { obj->playGroup = val; }
42 void SetRecording_RecordedId(
Myth::Recording *obj, uint32_t *val) { obj->recordedId = *val; }
This namespace contains all DTO definitions.