home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / inole2 / chap21 / polyline / resource.h < prev    next >
C/C++ Source or Header  |  1995-05-03  |  1KB  |  54 lines

  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.  
  14.  
  15. #ifndef _RESOURCE_H_
  16. #define _RESOURCE_H_
  17.  
  18.  
  19. //Object stringtable IDs
  20. #define IDS_POLYLINEMIN     0
  21. #define IDS_STORAGEFORMAT   0
  22. #define IDS_USERTYPE        1
  23.  
  24. #define IDS_CLOSECAPTION    2
  25. #define IDS_CLOSEPROMPT     3
  26. #define IDS_POLYLINEMAX     3
  27.  
  28. #define IDR_ICON            1
  29.  
  30. #define IDD_EDITDIALOG      1
  31.  
  32. #define ID_UNDO             100
  33. #define ID_COLORBACK        101
  34. #define ID_COLORLINE        102
  35. #define ID_GROUPCOLORS      103
  36. #define ID_GROUPPREVIEW     104
  37. #define ID_GROUPSTYLES      105
  38. #define ID_GROUPFIGURE      106
  39. #define ID_POLYLINERECT     107
  40. #define ID_POLYLINE         108
  41.  
  42. #define ID_LINEMIN          200
  43. #define ID_LINESOLID        200     //(ID_LINEMIN+PS_SOLID)
  44. #define ID_LINEDASH         201     //(ID_LINEMIN+PS_DASH)
  45. #define ID_LINEDOT          202     //(ID_LINEMIN+PS_DOT)
  46. #define ID_LINEDASHDOT      203     //(ID_LINEMIN+PS_DASHDOT)
  47. #define ID_LINEDASHDOTDOT   204     //(ID_LINEMIN+PS_DASHDOTDOT)
  48.  
  49. //Message to close the dialog
  50. #define POLYM_CLOSE         (WM_USER+1000)
  51.  
  52.  
  53. #endif //_RESOURCE_H_
  54.