diff options
Diffstat (limited to 'include/xine')
-rw-r--r-- | include/xine/attributes.h | 6 | ||||
-rw-r--r-- | include/xine/xineutils.h | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/xine/attributes.h b/include/xine/attributes.h index b25c76572..c339e7113 100644 --- a/include/xine/attributes.h +++ b/include/xine/attributes.h @@ -51,6 +51,12 @@ # define XINE_SENTINEL #endif +#ifdef SUPPORT_ATTRIBUTE_DEPRECATED +# define XINE_DEPRECATED __attribute__((__deprecated__)) +#else +# define XINE_DEPRECATED +#endif + #ifndef __attr_unused # ifdef SUPPORT_ATTRIBUTE_UNUSED # define __attr_unused __attribute__((__unused__)) diff --git a/include/xine/xineutils.h b/include/xine/xineutils.h index a94835f5a..7eb0acdd8 100644 --- a/include/xine/xineutils.h +++ b/include/xine/xineutils.h @@ -629,6 +629,7 @@ const char *xine_get_homedir(void) XINE_PROTECTED; /* * Get other xine directories. */ +const char *xine_get_pluginroot(void) XINE_PROTECTED; const char *xine_get_plugindir(void) XINE_PROTECTED; const char *xine_get_fontdir(void) XINE_PROTECTED; const char *xine_get_localedir(void) XINE_PROTECTED; |