diff options
Diffstat (limited to 'wintable/new/children.h')
| -rw-r--r-- | wintable/new/children.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/wintable/new/children.h b/wintable/new/children.h new file mode 100644 index 0000000..ba58939 --- /dev/null +++ b/wintable/new/children.h @@ -0,0 +1,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; +} |
