diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-01-05 00:44:49 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-01-05 00:44:49 +0100 |
commit | c81c9deccc79646bd7ac3f1759a4a3e4fb8a88af (patch) | |
tree | b39027bf19757a904f9d306085d8744046f24a1f /include/xine/post.h | |
parent | 119076c9300e2e2a816dc1a6ca32ba77f338b20c (diff) | |
parent | a2a95425350da93551388acdca8a00818a34c317 (diff) | |
download | xine-lib-c81c9deccc79646bd7ac3f1759a4a3e4fb8a88af.tar.gz xine-lib-c81c9deccc79646bd7ac3f1759a4a3e4fb8a88af.tar.bz2 |
Merge from 1.2.
Diffstat (limited to 'include/xine/post.h')
-rw-r--r-- | include/xine/post.h | 33 |
1 files changed, 19 insertions, 14 deletions
diff --git a/include/xine/post.h b/include/xine/post.h index 1995ca82f..10844d03a 100644 --- a/include/xine/post.h +++ b/include/xine/post.h @@ -23,21 +23,17 @@ #ifndef XINE_POST_H #define XINE_POST_H +#include <xine.h> +#include <xine/video_out.h> +#include <xine/audio_out.h> +#include <xine/xine_internal.h> +#include <xine/xineutils.h> + #ifdef XINE_COMPILE -# include "xine.h" -# include "video_out.h" -# include "audio_out.h" -# include "xine_internal.h" -# include "xineutils.h" -#else -# include <xine.h> -# include <xine/video_out.h> -# include <xine/audio_out.h> -# include <xine/xine_internal.h> -# include <xine/xineutils.h> +# include <xine/plugin_catalog.h> #endif -#define POST_PLUGIN_IFACE_VERSION 9 +#define POST_PLUGIN_IFACE_VERSION 10 typedef struct post_class_s post_class_t; @@ -119,8 +115,17 @@ struct post_plugin_s { const char **input_ids; const char **output_ids; - /* used by plugin loader */ - void *node; + /** + * @brief Pointer to the loaded plugin node. + * + * Used by the plugins loader. It's an opaque type when using the + * structure outside of xine's build. + */ +#ifdef XINE_COMPILE + plugin_node_t *node; +#else + void *node; +#endif /* has dispose been called */ int dispose_pending; |