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 / chap19 / polyline / resource.h < prev    next >
C/C++ Source or Header  |  1995-05-03  |  1KB  |  56 lines

  1. /*
  2.  * RESOURCE.H
  3.  * Polyline Component Chapter 19
  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. //CHAPTER19MOD
  25. #define IDS_CLOSECAPTION    2
  26. #define IDS_CLOSEPROMPT     3
  27. #define IDS_POLYLINEMAX     3
  28.  
  29. #define IDR_ICON            1
  30.  
  31. #define IDD_EDITDIALOG      1
  32.  
  33. #define ID_UNDO             100
  34. #define ID_COLORBACK        101
  35. #define ID_COLORLINE        102
  36. #define ID_GROUPCOLORS      103
  37. #define ID_GROUPPREVIEW     104
  38. #define ID_GROUPSTYLES      105
  39. #define ID_GROUPFIGURE      106
  40. #define ID_POLYLINERECT     107
  41. #define ID_POLYLINE         108
  42.  
  43. #define ID_LINEMIN          200
  44. #define ID_LINESOLID        200     //(ID_LINEMIN+PS_SOLID)
  45. #define ID_LINEDASH         201     //(ID_LINEMIN+PS_DASH)
  46. #define ID_LINEDOT          202     //(ID_LINEMIN+PS_DOT)
  47. #define ID_LINEDASHDOT      203     //(ID_LINEMIN+PS_DASHDOT)
  48. #define ID_LINEDASHDOTDOT   204     //(ID_LINEMIN+PS_DASHDOTDOT)
  49.  
  50. //Message to close the dialog
  51. #define POLYM_CLOSE         (WM_USER+1000)
  52.  
  53. //End CHAPTER19MOD
  54.  
  55. #endif //_RESOURCE_H_
  56.