summaryrefslogtreecommitdiff
path: root/src/input/input_plugin.h
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-05-03 00:02:42 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-05-03 00:02:42 +0000
commitc6d82d11056a2f36b90215f96cfaa10707d39129 (patch)
tree1f2c5cb3fe16755d147f426a268bddf43707a54a /src/input/input_plugin.h
parentc6a279807a3f243915bd13061d1161eaa73275a4 (diff)
downloadxine-lib-c6d82d11056a2f36b90215f96cfaa10707d39129.tar.gz
xine-lib-c6d82d11056a2f36b90215f96cfaa10707d39129.tar.bz2
Add xine_get_autoplay_*() functions.
CVS patchset: 56 CVS date: 2001/05/03 00:02:42
Diffstat (limited to 'src/input/input_plugin.h')
-rw-r--r--src/input/input_plugin.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/input/input_plugin.h b/src/input/input_plugin.h
index 6117dd8c2..f944a1127 100644
--- a/src/input/input_plugin.h
+++ b/src/input/input_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: input_plugin.h,v 1.3 2001/04/24 17:42:27 guenter Exp $
+ * $Id: input_plugin.h,v 1.4 2001/05/03 00:02:42 f1rmb Exp $
*/
#ifndef HAVE_INPUT_PLUGIN_H
@@ -162,9 +162,10 @@ struct input_plugin_s
* possible capabilites an input plugin can have:
*/
-#define INPUT_CAP_SEEKABLE 1
-#define INPUT_CAP_BLOCK 2
-#define INPUT_CAP_AUTOPLAY 4
-#define INPUT_CAP_CLUT 8
+#define INPUT_CAP_SEEKABLE 0x00000001
+#define INPUT_CAP_BLOCK 0x00000002
+#define INPUT_CAP_AUTOPLAY 0x00000004
+#define INPUT_CAP_BROWSABLE 0x00000008
+#define INPUT_CAP_CLUT 0x00000010
#endif