diff options
-rw-r--r-- | include/xine.h.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index 29d4da58c..422029754 100644 --- a/include/xine.h.in +++ b/include/xine.h.in @@ -134,6 +134,12 @@ int xine_check_version (int major, int minor, int sub) XINE_PROTECTED; */ xine_t *xine_new (void) XINE_PROTECTED; +/* allow the setting of some flags before xine_init + * FIXME-ABI: this is currently GLOBAL + */ +void xine_set_flags (xine_t *, int) XINE_PROTECTED __attribute__((weak)); +#define XINE_FLAG_NO_WRITE_CACHE 1 + /* * post_init the xine engine */ |