From f8e3f12ab02b528f2a05a4f713d7af7ea8e44b42 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Fri, 11 Dec 2015 20:37:59 -0500 Subject: LET'S GET THIS FINAL REWRITE EVER STARTED --- prev/wintable/children.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 prev/wintable/children.h (limited to 'prev/wintable/children.h') diff --git a/prev/wintable/children.h b/prev/wintable/children.h new file mode 100644 index 0000000..6a3aff3 --- /dev/null +++ b/prev/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; +} -- cgit v1.2.3