cleanup: move demux packet functions from demuxer.h to demuxer.c
[mplayer/glamo.git] / input / mouse.h
blob789cac96c3f04ef63cd2be5f0baf5365c48a3b50
1 /*
2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #ifndef MPLAYER_MOUSE_H
20 #define MPLAYER_MOUSE_H
22 #define MOUSE_BASE ((0x100+256)|MP_NO_REPEAT_KEY)
23 #define MOUSE_BTN0 (MOUSE_BASE+0)
24 #define MOUSE_BTN1 (MOUSE_BASE+1)
25 #define MOUSE_BTN2 (MOUSE_BASE+2)
26 #define MOUSE_BTN3 (MOUSE_BASE+3)
27 #define MOUSE_BTN4 (MOUSE_BASE+4)
28 #define MOUSE_BTN5 (MOUSE_BASE+5)
29 #define MOUSE_BTN6 (MOUSE_BASE+6)
30 #define MOUSE_BTN7 (MOUSE_BASE+7)
31 #define MOUSE_BTN8 (MOUSE_BASE+8)
32 #define MOUSE_BTN9 (MOUSE_BASE+9)
34 #define MOUSE_BASE_DBL (0x300|MP_NO_REPEAT_KEY)
35 #define MOUSE_BTN0_DBL (MOUSE_BASE_DBL+0)
36 #define MOUSE_BTN1_DBL (MOUSE_BASE_DBL+1)
37 #define MOUSE_BTN2_DBL (MOUSE_BASE_DBL+2)
38 #define MOUSE_BTN3_DBL (MOUSE_BASE_DBL+3)
39 #define MOUSE_BTN4_DBL (MOUSE_BASE_DBL+4)
40 #define MOUSE_BTN5_DBL (MOUSE_BASE_DBL+5)
41 #define MOUSE_BTN6_DBL (MOUSE_BASE_DBL+6)
42 #define MOUSE_BTN7_DBL (MOUSE_BASE_DBL+7)
43 #define MOUSE_BTN8_DBL (MOUSE_BASE_DBL+8)
44 #define MOUSE_BTN9_DBL (MOUSE_BASE_DBL+9)
46 #endif /* MPLAYER_MOUSE_H */