diff options
author | Thibaut Mattern <tmattern@users.sourceforge.net> | 2005-04-10 09:31:16 +0000 |
---|---|---|
committer | Thibaut Mattern <tmattern@users.sourceforge.net> | 2005-04-10 09:31:16 +0000 |
commit | db86236631c3d8838cb33ebecedfc53a5b4ff600 (patch) | |
tree | d6f81a0035ee95905346a0663ae1f0ea4f787844 /src/xine-engine/xine_plugin.h | |
parent | c1c082b44c4c97e0f4dc4909161fa8a472daa2e6 (diff) | |
download | xine-lib-db86236631c3d8838cb33ebecedfc53a5b4ff600.tar.gz xine-lib-db86236631c3d8838cb33ebecedfc53a5b4ff600.tar.bz2 |
Moved plugin lists to an array of list.
CVS patchset: 7452
CVS date: 2005/04/10 09:31:16
Diffstat (limited to 'src/xine-engine/xine_plugin.h')
-rw-r--r-- | src/xine-engine/xine_plugin.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/xine-engine/xine_plugin.h b/src/xine-engine/xine_plugin.h index 0fed49aa9..d85364521 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.17 2005/02/13 14:24:25 tmattern Exp $ + * $Id: xine_plugin.h,v 1.18 2005/04/10 09:31:16 tmattern Exp $ * * generic plugin definitions * @@ -34,7 +34,9 @@ #define PLUGIN_SPU_DECODER 5 #define PLUGIN_AUDIO_OUT 6 #define PLUGIN_VIDEO_OUT 7 -#define PLUGIN_POST 8 +#define PLUGIN_POST 8 + +#define PLUGIN_TYPE_MAX PLUGIN_POST /* this flag may be or'ed with type in order to force preloading the plugin. * very useful to register config items on xine initialization. |