blob: 21da3e5ab7e25f656f987f4ef0ef8ca4e4075af0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
|