24037
|
1 /*
|
|
2 * Apple Remote input interface
|
|
3 *
|
|
4 * Copyright (C) 2007 Zoltan Ponekker <pontscho at kac.poliod.hu>
|
|
5 *
|
|
6 * This file is part of MPlayer.
|
|
7 *
|
|
8 * MPlayer is free software; you can redistribute it and/or modify
|
|
9 * it under the terms of the GNU General Public License as published by
|
|
10 * the Free Software Foundation; either version 2 of the License, or
|
|
11 * (at your option) any later version.
|
|
12 *
|
|
13 * MPlayer is distributed in the hope that it will be useful,
|
|
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16 * GNU General Public License for more details.
|
|
17 *
|
|
18 * You should have received a copy of the GNU General Public License
|
|
19 * along with MPlayer; if not, write to the Free Software
|
|
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
21 */
|
|
22
|
|
23 #ifndef INPUT_AR_H
|
|
24 #define INPUT_AR_H
|
|
25
|
|
26 #define AR_BASE 0x500
|
|
27 #define AR_PLAY (AR_BASE + 0)
|
|
28 #define AR_PLAY_HOLD (AR_BASE + 1)
|
|
29 #define AR_NEXT (AR_BASE + 2)
|
|
30 #define AR_NEXT_HOLD (AR_BASE + 3)
|
|
31 #define AR_PREV (AR_BASE + 4)
|
|
32 #define AR_PREV_HOLD (AR_BASE + 5)
|
|
33 #define AR_MENU (AR_BASE + 6)
|
|
34 #define AR_MENU_HOLD (AR_BASE + 7)
|
|
35 #define AR_VUP (AR_BASE + 8)
|
|
36 #define AR_VDOWN (AR_BASE + 9)
|
|
37
|
|
38 int mp_input_ar_init(void);
|
|
39 int mp_input_ar_read(int fd);
|
|
40 void mp_input_ar_close(int fd);
|
|
41
|
|
42 #endif /* INPUT_AR_H */
|