Leaked source code of windows server 2003
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.

40 lines
966 B

  1. /*--------------------------------------------------------------------------*
  2. *
  3. * Microsoft Windows
  4. * Copyright (C) Microsoft Corporation, 1992 - 1999
  5. *
  6. * File: imageid.h
  7. *
  8. * Contents: IDs for stock scope/result item images
  9. *
  10. * History: 25-Jun-98 jeffro Created
  11. *
  12. *--------------------------------------------------------------------------*/
  13. #ifndef IMAGEID_H
  14. #define IMAGEID_H
  15. #pragma once
  16. /*
  17. * these IDs correspond to the images in nodemgr\res\nodes[16|32].bmp
  18. */
  19. enum StockImageIndex
  20. {
  21. eStockImage_Folder = 0,
  22. eStockImage_File = 1,
  23. eStockImage_OCX = 2,
  24. eStockImage_HTML = 3,
  25. eStockImage_Monitor = 4,
  26. eStockImage_Shortcut = 5,
  27. eStockImage_OpenFolder = 6,
  28. eStockImage_Taskpad = 7,
  29. eStockImage_Favorite = 8,
  30. // must be last
  31. eStockImage_Count,
  32. eStockImage_Max = eStockImage_Count - 1
  33. };
  34. #endif /* IMAGEID_H */