summaryrefslogtreecommitdiff
path: root/wintable/new/children.h
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-01-06 17:27:41 -0500
committerPietro Gagliardi <[email protected]>2015-01-06 17:27:41 -0500
commit22123fb676d26d309d428a892c453e35e684e367 (patch)
tree9552f1a91a8b8995065e74573e8f59f448f2b08c /wintable/new/children.h
parent720049bfd3c6d205859f3150dee33dee78dc3dc3 (diff)
Merged wintable/new/ into wintable/.
Diffstat (limited to 'wintable/new/children.h')
-rw-r--r--wintable/new/children.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/wintable/new/children.h b/wintable/new/children.h
deleted file mode 100644
index 6a3aff3..0000000
--- a/wintable/new/children.h
+++ /dev/null
@@ -1,19 +0,0 @@
-// 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;
-}