blob: ba58939002d9e89041c806dce55adb460de5a45d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// 7 december 2014
static const handlerfunc commandHandlers[] = {
NULL,
};
static const handlerfunc notifyHandlers[] = {
NULL,
};
HANDLER(childrenHandlers)
{
if (uMsg == WM_COMMAND)
return runHandlers(commandHandlers, t, uMsg, wParam, lParam, lResult);
if (uMsg == WM_NOTIFY)
return runHandlers(notifyHandlers, t, uMsg, wParam, lParam, lResult);
return FALSE;
}
|