1
1

* mouse.h: Use definitions for GPM_B_DOWN and GPM_B_UP

compatible with gpm-1.20.
Reported by by David Martin <dmartina@excite.com>
Этот коммит содержится в:
Pavel Roskin 2002-10-30 20:52:59 +00:00
родитель 83e7cf2df0
Коммит 04f460d565
3 изменённых файлов: 13 добавлений и 5 удалений

Просмотреть файл

@ -1,3 +1,9 @@
2002-10-30 Pavel Roskin <proski@gnu.org>
* mouse.h: Use definitions for GPM_B_DOWN and GPM_B_UP
compatible with gpm-1.20.
Reported by by David Martin <dmartina@excite.com>
2002-10-29 Pavel Roskin <proski@gnu.org>
* panel.h: Use spaces, not commas, in the format - they are more

Просмотреть файл

@ -22,9 +22,6 @@ anything can be done about it.
ftp and fish with home != '/' - readjust directory to the home.
Check compatibility with new gpm. Excessive warnings on Mandrake 9.0
have been reported.
Allow modifiers for keys in mc.lib, like "shift-up".

Просмотреть файл

@ -72,8 +72,13 @@ void enable_mouse (void);
void disable_mouse (void);
/* Mouse wheel events */
#define GPM_B_UP 8
#define GPM_B_DOWN 16
#ifndef GPM_B_DOWN
#define GPM_B_DOWN 32
#endif
#ifndef GPM_B_UP
#define GPM_B_UP 16
#endif
#ifdef HAVE_LIBGPM