diff options
| author | Pietro Gagliardi <[email protected]> | 2015-01-06 17:27:41 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2015-01-06 17:27:41 -0500 |
| commit | 22123fb676d26d309d428a892c453e35e684e367 (patch) | |
| tree | 9552f1a91a8b8995065e74573e8f59f448f2b08c /wintable/children.h | |
| parent | 720049bfd3c6d205859f3150dee33dee78dc3dc3 (diff) | |
Merged wintable/new/ into wintable/.
Diffstat (limited to 'wintable/children.h')
| -rw-r--r-- | wintable/children.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/wintable/children.h b/wintable/children.h new file mode 100644 index 0000000..6a3aff3 --- /dev/null +++ b/wintable/children.h @@ -0,0 +1,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; +} |
