Made some variables that should be static static.

This commit is contained in:
Pietro Gagliardi 2015-06-03 23:16:58 -04:00
parent 068e76236a
commit fd6cfa54b3
1 changed files with 3 additions and 3 deletions

View File

@ -24,9 +24,9 @@ struct hscrollHandler {
UT_hash_handle hh; UT_hash_handle hh;
}; };
struct commandHandler *commandHandlers = NULL; static struct commandHandler *commandHandlers = NULL;
struct notifyHandler *notifyHandlers = NULL; static struct notifyHandler *notifyHandlers = NULL;
struct hscrollHandler *hscrollHandlers = NULL; static struct hscrollHandler *hscrollHandlers = NULL;
#define REGFN(WM_MESSAGE, message, params) \ #define REGFN(WM_MESSAGE, message, params) \
void uiWindowsRegister ## WM_MESSAGE ## Handler(HWND hwnd, BOOL (*handler)params, uiControl *c) \ void uiWindowsRegister ## WM_MESSAGE ## Handler(HWND hwnd, BOOL (*handler)params, uiControl *c) \