home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / sysmgmt / sms / smsapi / resdll / resdll.rc < prev   
Text File  |  1996-10-15  |  3KB  |  93 lines

  1. /* resdll.rc : Defines the resources for a Hermes resource DLL.
  2. //
  3. // Copyright (C) 1992 Microsoft Corporation
  4. // All rights reserved.
  5. //
  6. */
  7.  
  8. #include <windows.h>
  9.  
  10. // 16x16 mini-icons for lists
  11.  
  12. // Note: the Mask bitmaps in the following examples are optional.  The system
  13. // will generate a mask if one is not provided, but if the graphic has a hole
  14. // in it, the hole will be opaque white.
  15.  
  16. // ---------------------------------------------------------------------------
  17.  
  18. // Standard object icons.
  19. // Naming convention: ObjectName (+ ObjectNamemask)
  20. //
  21. // These definitions will replace the standard package mini-icon:
  22. package     BITMAP eye.bmp
  23. packagemask BITMAP eyemask.bmp
  24.  
  25. // ---------------------------------------------------------------------------
  26.  
  27. // Architecture bitmaps (16x16 mini-icons)
  28. // (For Inventory [Sites] Window and Query Result Windows)
  29. // Hermes conducts the following search in all known resource files:
  30. // (If any search step fails, it moves on to the next...)
  31. // 
  32. //  1. Search for Architecture_SystemType_Role
  33. //  2. Search for Architecture_Role
  34. //  3. Search for Architecture_None (Role is unknown)
  35. //  4. Use generic
  36. //
  37.  
  38. // Architecture type role mini-icons
  39. // Naming convention: Architecture_SystemType_SystemRole (+ mask)
  40. //
  41. // These definitions will replace the Mac workstation mini-icon in the Sites
  42. // window and in Query Result windows::
  43. Personal_Computer_Macintosh_Workstation       BITMAP eye.bmp
  44. Personal_Computer_Macintosh_Workstationmask   BITMAP eyemask.bmp  
  45.  
  46. // Architecture role mini-icons
  47. // Naming convention: Architecture_SystemRole (+ Architecture_SystemRolemask)
  48. //
  49. // These definitions will replace the server mini-icon in the Sites window
  50. // and in Query Result windows:
  51. Personal_Computer_Server        BITMAP eye.bmp
  52. Personal_Computer_Servermask    BITMAP eyemask.bmp
  53.  
  54. // Unknown Role mini-icons
  55. // Naming convention: Architecture_None (+ Architecture_Nonemask)
  56. //
  57. // These definitions will replace the UserGroups mini-icon in Query Result
  58. // windows:
  59. UserGroups_None                 BITMAP eye.bmp
  60. UserGroups_Nonemask             BITMAP eyemask.bmp
  61.  
  62. // ---------------------------------------------------------------------------
  63.  
  64. // Program Display Group Icons (Machine Property windows)
  65. // Hermes conducts the following search in all known resource files:
  66. // (If any search step fails, it moves on to the next...)
  67. //
  68. //  1. Search for PDG_SystemType_GroupName
  69. //  2. Search for PDG_Architecture_GroupName
  70. //  3. Search for PDG_Std_GroupName (Std = Standard, icons always available).
  71. //  4. Use generic
  72. //
  73.  
  74. // SystemType Icons (PDG_SystemType_GroupName).
  75. //
  76. // This definition will replace the Operating System icon for Macintoshes
  77. // (Macs have SystemType = Macintosh, Architecture = Personal Computer):
  78. PDG_Macintosh_Operating_System ICON eye.ico
  79.  
  80. // Architecture Icons (PDG_Architecture_GroupName).
  81. //
  82. // This definition will replace the Mouse icon for members of the Personal
  83. // Computer architecture that don't have an explicit PDG_SystemType_Mouse:
  84. PDG_Personal_Computer_Mouse ICON eye.ico
  85.  
  86. // Standard Icons (Last resort icon given a GroupName, PDG_Std_GroupName).
  87. //
  88. // This definition will replace the standard Identification icon for members
  89. // of any architecture that don't have PDG_SystemType_Identification or
  90. // PDG_Architecture_Identification defined (PCs and Macs both have one):
  91. PDG_Std_Identification   ICON eye.ico
  92.  
  93.