1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-21 21:38:00 +01:00

wmaker: Moved definition of global variable 'wKeyBindings' to header

Multiple declaration of global variables in local source files is
a dangerous idea.
This commit is contained in:
Christophe CURIS
2013-10-10 23:55:55 +02:00
committed by Carlos R. Mafra
parent d9832e578f
commit 18059fb1c7
8 changed files with 6 additions and 15 deletions

View File

@@ -128,6 +128,12 @@ typedef struct WShortKey {
KeyCode keycode;
} WShortKey;
/* ---[ Global Variables ]------------------------------------------------ */
extern WShortKey wKeyBindings[WKBD_LAST];
/* ---[ Functions ]------------------------------------------------------- */
void wKeyboardInitialize(void);
#endif /* WMKEYBIND_H */