mirror of
https://github.com/mpv-player/mpv
synced 2024-11-03 03:19:24 +01:00
1bf9249b8c
and set autorepeat delay and rate. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4658 b3059339-0415-0410-9bf9-f77b7e298cf2
14 lines
392 B
C
14 lines
392 B
C
|
|
|
|
#define MOUSE_BASE ((0x100+256)|MP_NO_REPEAT_KEY)
|
|
#define MOUSE_BTN0 (MOUSE_BASE+0)
|
|
#define MOUSE_BTN1 (MOUSE_BASE+1)
|
|
#define MOUSE_BTN2 (MOUSE_BASE+2)
|
|
#define MOUSE_BTN3 (MOUSE_BASE+3)
|
|
#define MOUSE_BTN4 (MOUSE_BASE+4)
|
|
#define MOUSE_BTN5 (MOUSE_BASE+5)
|
|
#define MOUSE_BTN6 (MOUSE_BASE+6)
|
|
#define MOUSE_BTN7 (MOUSE_BASE+7)
|
|
#define MOUSE_BTN8 (MOUSE_BASE+8)
|
|
#define MOUSE_BTN9 (MOUSE_BASE+9)
|