Constants.h
上传用户:hjw22cn
上传日期:2007-01-11
资源大小:192k
文件大小:1k
源码类别:

Tab控件

开发平台:

Visual C++

  1. #ifndef __CONSTANTS_H
  2. #define __CONSTANTS_H
  3. // user-defined messages
  4. const UINT UWM_CHANGEPAGE         = WM_APP + 1;
  5. const UINT UWM_SHOWHIDEPAGE       = WM_APP + 2;
  6. const UINT UWM_REFLECTMSGTOPAGE   = WM_APP + 3;
  7. const UINT UWM_REFLECTMSGTODIALOG = WM_APP + 4;
  8. const UINT UWM_SHUTDOWN           = WM_APP + 5;
  9. const UINT UWM_TEXTFORBOX1        = WM_APP + 6;
  10. const UINT UWM_TEXTFORBOX2        = WM_APP + 7;
  11. const UINT UWM_STATUSPAGEADDED    = WM_APP + 8;
  12. const UINT UWM_STATUSPAGEDELETED  = WM_APP + 9;
  13. const UINT UWM_STATUSPAGEUPDATED  = WM_APP + 10;
  14. const UINT UWM_UPDATEIMAGELIST    = WM_APP + 11;
  15. const UINT UWM_SAVETOLOG          = WM_APP + 12;
  16. const UINT UWM_CLEARLISTBOXES     = WM_APP + 13;
  17. const UINT UWM_CLEARLISTBOX1      = WM_APP + 14;
  18. const UINT UWM_CLEARLISTBOX2      = WM_APP + 15;
  19.   
  20. const UINT UWM_LASTPOSSIBLEMSG    = WM_APP + 3070;
  21. // message types for status message pages
  22. const int MAX_STATUSMSGS          = 100;
  23. // message amplifiers
  24. const int PROC_AFTERREFLECTING    = 1;
  25. const int PROC_BEFOREREFLECTING   = 2;
  26. const int PROC_REFLECTOTHER       = 3;
  27. const int nMAX_PAGES              = 10;
  28. const int nLB_CLEAR               = 0;
  29. const int nLB_LOG                 = 1;
  30. // error constants
  31. const int ASMERR_NULLAPPPAGE      = -1;
  32. const int ASMERR_INDEXOUTOFRANGE  = -2;
  33. #endif