blob: 471cdff7f6f7020c4d3b495545833dfcb98f84c8 (
plain) (
blame)
1
2
3
|
#define MAKE_ACCESSORS(str, name, type, field) \
type av_##name##_get_##field(const str *s) { return s->field; } \
void av_##name##_set_##field(str *s, type v) { s->field = v; }
|