blob: 6a3aff3eacec6366de7ade563b88a0bbef98e864 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// 7 december 2014
static const handlerfunc commandHandlers[] = {
NULL,
};
static const handlerfunc notifyHandlers[] = {
headerNotifyHandler,
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;
}
|