diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-01-06 21:15:59 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-01-06 21:15:59 +0000 |
commit | 9a472d6a7f6f24dce5ff9a66aeed99662359ad4e (patch) | |
tree | 154d4c02e7e650e748683438178a3b2bb15e4cd4 /include | |
parent | 8bd8e600bf475426cbcd5b8f8f89fb2d6e53ec29 (diff) | |
download | xine-lib-9a472d6a7f6f24dce5ff9a66aeed99662359ad4e.tar.gz xine-lib-9a472d6a7f6f24dce5ff9a66aeed99662359ad4e.tar.bz2 |
Update to libxdg-basedir 1.0.2; adapt accordingly, and default to external.
Diffstat (limited to 'include')
-rw-r--r-- | include/xine/xine_internal.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/include/xine/xine_internal.h b/include/xine/xine_internal.h index 9f2e95aae..b12d20880 100644 --- a/include/xine/xine_internal.h +++ b/include/xine/xine_internal.h @@ -73,6 +73,11 @@ typedef struct xine_ticket_s xine_ticket_t; * the "big" xine struct, holding everything together */ +#ifndef XDG_BASEDIR_H +/* present here for internal convenience only */ +typedef struct { void *reserved; } xdgHandle; +#endif + struct xine_s { config_values_t *config; @@ -92,8 +97,8 @@ struct xine_s { metronom_clock_t *clock; - /** Handle for libxdg-basedir functions. It's actually an xdgHandle. */ - void * basedir_handle; + /** Handle for libxdg-basedir functions. */ + xdgHandle basedir_handle; #ifdef XINE_ENGINE_INTERNAL xine_ticket_t *port_ticket; |