Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.3 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1997 - 1998
  6. //
  7. // File: images.h
  8. //
  9. //--------------------------------------------------------------------------
  10. #ifndef _IMAGES_H
  11. #define _IMAGES_H
  12. // Note - These are offsets into my image list
  13. typedef enum _IMAGE_INDICIES
  14. {
  15. IMAGE_IDX_FOLDER_OPEN = 0, // open folder image
  16. IMAGE_IDX_FOLDER_CLOSED, // typical closed folder image
  17. IMAGE_IDX_MACHINE, // a machine
  18. IMAGE_IDX_MACHINE_ERROR, // generic can't connect to machine
  19. IMAGE_IDX_MACHINE_ACCESS_DENIED, // access denied
  20. IMAGE_IDX_MACHINE_STARTED, // Router service is started
  21. IMAGE_IDX_MACHINE_STOPPED, // Router service is stopped
  22. IMAGE_IDX_MACHINE_WAIT, // waiting for the machine
  23. IMAGE_IDX_DOMAIN, // domain (or multiple machines)
  24. IMAGE_IDX_INTERFACES, // routing interfaces
  25. IMAGE_IDX_LAN_CARD, // LAN adapter icon
  26. IMAGE_IDX_WAN_CARD, // WAN adapter icon
  27. // Add all indexes BEFORE this. This is the end of the list
  28. IMAGE_IDX_MAX
  29. } IMAGE_INDICIES, *LPIMAGE_INDICIES;
  30. // Include the types of all of our nodes
  31. // This corresponds to the node types but is a DWORD that is used
  32. // by the framework
  33. typedef enum
  34. {
  35. ROUTER_NODE_MACHINE = 0,
  36. ROUTER_NODE_DOMAIN,
  37. ROUTER_NODE_ROOT,
  38. } ROUTER_NODE_DESC;
  39. #endif