From 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d Mon Sep 17 00:00:00 2001 From: Jef Date: Tue, 24 Sep 2024 14:54:57 +0200 Subject: Initial community commit --- Src/Wasabi/api/wnd/usermsg.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Src/Wasabi/api/wnd/usermsg.h (limited to 'Src/Wasabi/api/wnd/usermsg.h') diff --git a/Src/Wasabi/api/wnd/usermsg.h b/Src/Wasabi/api/wnd/usermsg.h new file mode 100644 index 00000000..21da3e5a --- /dev/null +++ b/Src/Wasabi/api/wnd/usermsg.h @@ -0,0 +1,23 @@ +#ifndef _USERMSG_H +#define _USERMSG_H + +// WM_USER+ messages for common classes +// DO NOT PUT ANY MORE FUCKING NON WNDPROC SHIT IN HERE +// childNotify stuff goes into notifmsg.h +#ifdef _WIN32 +enum +{ + UMSG_NOP = WM_USER, + + UMSG_DEFERRED_CALLBACK, + +//CUT UMSG_TREEVIEW_EDITLABELDEFERRED, +//CUT UMSG_TREEVIEW_SELECTITEM, + + UMSG_COMPON_POSTMESSAGE, + + LAST_COMMON_UMSG +}; +#endif + +#endif -- cgit