diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-12-29 14:04:43 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-12-29 14:04:43 +0000 |
commit | d6423b628bb7437529b2d9c4cf388fd9560886b7 (patch) | |
tree | 2434750b73e2ee057962f2e3ca1ca419eaea4db4 /src/xine-engine/xine_plugin.h | |
parent | 50aa894a408172bcd2c31dd8fa1ce5b445fccc48 (diff) | |
download | xine-lib-d6423b628bb7437529b2d9c4cf388fd9560886b7.tar.gz xine-lib-d6423b628bb7437529b2d9c4cf388fd9560886b7.tar.bz2 |
- new post plugin property: type
- include post plugins in plugin catalog
CVS patchset: 3716
CVS date: 2002/12/29 14:04:43
Diffstat (limited to 'src/xine-engine/xine_plugin.h')
-rw-r--r-- | src/xine-engine/xine_plugin.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/xine-engine/xine_plugin.h b/src/xine-engine/xine_plugin.h index 7e905bbc5..fa07f7d5c 100644 --- a/src/xine-engine/xine_plugin.h +++ b/src/xine-engine/xine_plugin.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_plugin.h,v 1.7 2002/12/01 15:10:04 mroi Exp $ + * $Id: xine_plugin.h,v 1.8 2002/12/29 14:04:43 mroi Exp $ * * generic plugin definitions * @@ -64,4 +64,9 @@ typedef struct { int priority; } decoder_info_t; +/* special info for a post plugin */ +typedef struct { + uint32_t type; /* type of the post plugin, use one of XINE_POST_TYPE_* */ +} post_info_t; + #endif |