usermsg.h 388 B

1234567891011121314151617181920212223
  1. #ifndef _USERMSG_H
  2. #define _USERMSG_H
  3. // WM_USER+ messages for common classes
  4. // DO NOT PUT ANY MORE FUCKING NON WNDPROC SHIT IN HERE
  5. // childNotify stuff goes into notifmsg.h
  6. #ifdef _WIN32
  7. enum
  8. {
  9. UMSG_NOP = WM_USER,
  10. UMSG_DEFERRED_CALLBACK,
  11. //CUT UMSG_TREEVIEW_EDITLABELDEFERRED,
  12. //CUT UMSG_TREEVIEW_SELECTITEM,
  13. UMSG_COMPON_POSTMESSAGE,
  14. LAST_COMMON_UMSG
  15. };
  16. #endif
  17. #endif