summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/object.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/object.c b/src/object.c
index 4526bc5..70271c1 100644
--- a/src/object.c
+++ b/src/object.c
@@ -57,6 +57,16 @@ int xas_object_set_freq(xas_object *object, size_t freq) {
return object->set_freq(object, freq);
}
+int xas_object_set_flags(xas_object *object, int flags) {
+ if (object->set_flags == NULL) {
+ errno = ENOSYS;
+
+ return -1;
+ }
+
+ return object->set_flags(object, flags);
+}
+
xas_audio_stream *xas_object_stream_new(xas_object *object) {
if (object->stream_new == NULL) {
errno = ENOSYS;