RESOURCE.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * RESOURCE.H
  3.  * Polyline Component Chapter 21
  4.  *
  5.  * Definitions specifically pertaining to resources.
  6.  *
  7.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  8.  *
  9.  * Kraig Brockschmidt, Microsoft
  10.  * Internet  :  kraigb@microsoft.com
  11.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  12.  */
  13. #ifndef _RESOURCE_H_
  14. #define _RESOURCE_H_
  15. //Object stringtable IDs
  16. #define IDS_POLYLINEMIN     0
  17. #define IDS_STORAGEFORMAT   0
  18. #define IDS_USERTYPE        1
  19. #define IDS_CLOSECAPTION    2
  20. #define IDS_CLOSEPROMPT     3
  21. #define IDS_POLYLINEMAX     3
  22. #define IDR_ICON            1
  23. #define IDD_EDITDIALOG      1
  24. #define ID_UNDO             100
  25. #define ID_COLORBACK        101
  26. #define ID_COLORLINE        102
  27. #define ID_GROUPCOLORS      103
  28. #define ID_GROUPPREVIEW     104
  29. #define ID_GROUPSTYLES      105
  30. #define ID_GROUPFIGURE      106
  31. #define ID_POLYLINERECT     107
  32. #define ID_POLYLINE         108
  33. #define ID_LINEMIN          200
  34. #define ID_LINESOLID        200     //(ID_LINEMIN+PS_SOLID)
  35. #define ID_LINEDASH         201     //(ID_LINEMIN+PS_DASH)
  36. #define ID_LINEDOT          202     //(ID_LINEMIN+PS_DOT)
  37. #define ID_LINEDASHDOT      203     //(ID_LINEMIN+PS_DASHDOT)
  38. #define ID_LINEDASHDOTDOT   204     //(ID_LINEMIN+PS_DASHDOTDOT)
  39. //Message to close the dialog
  40. #define POLYM_CLOSE         (WM_USER+1000)
  41. #endif //_RESOURCE_H_