20 lines
396 B
C
20 lines
396 B
C
|
// 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;
|
||
|
}
|