1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-02 21:12:23 +00:00

rename 'struct keymap' -> 'struct mp_keymap'

This avoids the compilation failure on kFreeBSD (at least amd64):

  In file included from libvo/vo_directfb2.c:44:
  libvo/video_out.h:267: error: redefinition of 'struct keymap'

This is because libvo/vo_directfb2.c #includes sys/kd.h, which in turn
includes sys/kbio.h, which defines another 'struct keymap'.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31059 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
siretart 2010-04-23 10:22:44 +00:00
parent 8bd8aba37a
commit 9cef48bac7
6 changed files with 10 additions and 10 deletions

View File

@ -76,7 +76,7 @@
#define kVK_UpArrow 0x7e #define kVK_UpArrow 0x7e
#endif /* MAC_OS_X_VERSION_MAX_ALLOWED <= 1040 */ #endif /* MAC_OS_X_VERSION_MAX_ALLOWED <= 1040 */
static const struct keymap keymap[] = { static const struct mp_keymap keymap[] = {
// special keys // special keys
{0x34, KEY_ENTER}, // Enter key on some iBooks? {0x34, KEY_ENTER}, // Enter key on some iBooks?
{kVK_Return, KEY_ENTER}, {kVK_Return, KEY_ENTER},

View File

@ -371,7 +371,7 @@ int config_video_out(const vo_functions_t *vo, uint32_t width, uint32_t height,
* \result translation corresponding to key or "to" value of last mapping * \result translation corresponding to key or "to" value of last mapping
* if not found. * if not found.
*/ */
int lookup_keymap_table(const struct keymap *map, int key) { int lookup_keymap_table(const struct mp_keymap *map, int key) {
while (map->from && map->from != key) map++; while (map->from && map->from != key) map++;
return map->to; return map->to;
} }

View File

@ -269,11 +269,11 @@ extern char *monitor_hfreq_str;
extern char *monitor_vfreq_str; extern char *monitor_vfreq_str;
extern char *monitor_dotclock_str; extern char *monitor_dotclock_str;
struct keymap { struct mp_keymap {
int from; int from;
int to; int to;
}; };
int lookup_keymap_table(const struct keymap *map, int key); int lookup_keymap_table(const struct mp_keymap *map, int key);
struct vo_rect { struct vo_rect {
int left, right, top, bottom, width, height; int left, right, top, bottom, width, height;
}; };

View File

@ -70,7 +70,7 @@ const LIBVO_EXTERN(kva)
#define HWNDFROMWINID(wid) ((wid) + 0x80000000UL) #define HWNDFROMWINID(wid) ((wid) + 0x80000000UL)
static const struct keymap m_vk_map[] = { static const struct mp_keymap m_vk_map[] = {
{VK_NEWLINE, KEY_ENTER}, {VK_TAB, KEY_TAB}, {VK_SPACE, ' '}, {VK_NEWLINE, KEY_ENTER}, {VK_TAB, KEY_TAB}, {VK_SPACE, ' '},
// control keys // control keys
@ -92,7 +92,7 @@ static const struct keymap m_vk_map[] = {
{0, 0} {0, 0}
}; };
static const struct keymap m_keypad_map[] = { static const struct mp_keymap m_keypad_map[] = {
// keypad keys // keypad keys
{0x52, KEY_KP0}, {0x4F, KEY_KP1}, {0x50, KEY_KP2}, {0x51, KEY_KP3}, {0x52, KEY_KP0}, {0x4F, KEY_KP1}, {0x50, KEY_KP2}, {0x51, KEY_KP3},
{0x4B, KEY_KP4}, {0x4C, KEY_KP5}, {0x4D, KEY_KP6}, {0x47, KEY_KP7}, {0x4B, KEY_KP4}, {0x4C, KEY_KP5}, {0x4D, KEY_KP6}, {0x47, KEY_KP7},
@ -101,7 +101,7 @@ static const struct keymap m_keypad_map[] = {
{0, 0} {0, 0}
}; };
static const struct keymap m_mouse_map[] = { static const struct mp_keymap m_mouse_map[] = {
{WM_BUTTON1DOWN, MOUSE_BTN0}, {WM_BUTTON1DOWN, MOUSE_BTN0},
{WM_BUTTON3DOWN, MOUSE_BTN1}, {WM_BUTTON3DOWN, MOUSE_BTN1},
{WM_BUTTON2DOWN, MOUSE_BTN2}, {WM_BUTTON2DOWN, MOUSE_BTN2},

View File

@ -60,7 +60,7 @@ static HMONITOR (WINAPI* myMonitorFromWindow)(HWND, DWORD);
static BOOL (WINAPI* myGetMonitorInfo)(HMONITOR, LPMONITORINFO); static BOOL (WINAPI* myGetMonitorInfo)(HMONITOR, LPMONITORINFO);
static BOOL (WINAPI* myEnumDisplayMonitors)(HDC, LPCRECT, MONITORENUMPROC, LPARAM); static BOOL (WINAPI* myEnumDisplayMonitors)(HDC, LPCRECT, MONITORENUMPROC, LPARAM);
static const struct keymap vk_map[] = { static const struct mp_keymap vk_map[] = {
// special keys // special keys
{VK_ESCAPE, KEY_ESC}, {VK_BACK, KEY_BS}, {VK_TAB, KEY_TAB}, {VK_CONTROL, KEY_CTRL}, {VK_ESCAPE, KEY_ESC}, {VK_BACK, KEY_BS}, {VK_TAB, KEY_TAB}, {VK_CONTROL, KEY_CTRL},

View File

@ -561,7 +561,7 @@ void vo_uninit(void)
#include "wskeys.h" #include "wskeys.h"
#ifdef XF86XK_AudioPause #ifdef XF86XK_AudioPause
static const struct keymap keysym_map[] = { static const struct mp_keymap keysym_map[] = {
{XF86XK_MenuKB, KEY_MENU}, {XF86XK_MenuKB, KEY_MENU},
{XF86XK_AudioPlay, KEY_PLAY}, {XF86XK_AudioPause, KEY_PAUSE}, {XF86XK_AudioStop, KEY_STOP}, {XF86XK_AudioPlay, KEY_PLAY}, {XF86XK_AudioPause, KEY_PAUSE}, {XF86XK_AudioStop, KEY_STOP},
{XF86XK_AudioPrev, KEY_PREV}, {XF86XK_AudioNext, KEY_NEXT}, {XF86XK_AudioPrev, KEY_PREV}, {XF86XK_AudioNext, KEY_NEXT},
@ -577,7 +577,7 @@ static void vo_x11_putkey_ext(int keysym)
} }
#endif #endif
static const struct keymap keymap[] = { static const struct mp_keymap keymap[] = {
// special keys // special keys
{wsEscape, KEY_ESC}, {wsBackSpace, KEY_BS}, {wsTab, KEY_TAB}, {wsEnter, KEY_ENTER}, {wsEscape, KEY_ESC}, {wsBackSpace, KEY_BS}, {wsTab, KEY_TAB}, {wsEnter, KEY_ENTER},