summaryrefslogtreecommitdiffstats
path: root/input/ar.h
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-14 14:29:22 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-14 14:29:22 +0000
commitbcf0c984f0d5409fc42e9694c1677366881ff6ad (patch)
treeef40fb349a3dd241858c7f30819a6d0d0b65d1ea /input/ar.h
parentfc0d1814d41af86fdd6c70097bad7c6ec3b53fd2 (diff)
downloadmpv-bcf0c984f0d5409fc42e9694c1677366881ff6ad.tar.bz2
mpv-bcf0c984f0d5409fc42e9694c1677366881ff6ad.tar.xz
Apple Remote support
patch by Zoltan Ponekker, pontscho kac.poliod hu cleaned up by Ulion, ulion2002 gmail com with some help by Reimar and me git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24057 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'input/ar.h')
-rw-r--r--input/ar.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/input/ar.h b/input/ar.h
new file mode 100644
index 0000000000..c6b7c4d5b9
--- /dev/null
+++ b/input/ar.h
@@ -0,0 +1,42 @@
+/*
+ * Apple Remote input interface
+ *
+ * Copyright (C) 2007 Zoltan Ponekker <pontscho at kac.poliod.hu>
+ *
+ * This file is part of MPlayer.
+ *
+ * MPlayer is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * MPlayer is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with MPlayer; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef INPUT_AR_H
+#define INPUT_AR_H
+
+#define AR_BASE 0x500
+#define AR_PLAY (AR_BASE + 0)
+#define AR_PLAY_HOLD (AR_BASE + 1)
+#define AR_NEXT (AR_BASE + 2)
+#define AR_NEXT_HOLD (AR_BASE + 3)
+#define AR_PREV (AR_BASE + 4)
+#define AR_PREV_HOLD (AR_BASE + 5)
+#define AR_MENU (AR_BASE + 6)
+#define AR_MENU_HOLD (AR_BASE + 7)
+#define AR_VUP (AR_BASE + 8)
+#define AR_VDOWN (AR_BASE + 9)
+
+int mp_input_ar_init(void);
+int mp_input_ar_read(int fd);
+void mp_input_ar_close(int fd);
+
+#endif /* INPUT_AR_H */