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.

43 lines
1.4 KiB

  1. /////////////////////////////////////////////////////////////////////
  2. // About.cpp
  3. //
  4. // Provide constructors for the CSnapinAbout implementation.
  5. //
  6. // HISTORY
  7. // 31-Jul-97 t-danm Creation.
  8. /////////////////////////////////////////////////////////////////////
  9. #include "stdafx.h"
  10. #include "about.h"
  11. #include "stdabout.cpp"
  12. /////////////////////////////////////////////////////////////////////
  13. CServiceMgmtAbout::CServiceMgmtAbout()
  14. {
  15. m_uIdStrProvider = IDS_SNAPINABOUT_PROVIDER;
  16. m_uIdStrVersion = IDS_SNAPINABOUT_VERSION;
  17. m_uIdStrDestription = IDS_SNAPINABOUT_DESCR_SERVICES;
  18. m_uIdIconImage = IDI_ICON_SVCMGMT;
  19. // HACK (t-danm): Currently there is only one bitmap
  20. // per IDB_SVCMGMT_ICONS_* so we can use the same bitmap
  21. // strip for individual bitmaps.
  22. m_uIdBitmapSmallImage = IDB_SVCMGMT_ICONS_16;
  23. m_uIdBitmapSmallImageOpen = IDB_SVCMGMT_ICONS_16;
  24. m_uIdBitmapLargeImage = IDB_SVCMGMT_ICONS_32;
  25. m_crImageMask = RGB(255, 0, 255);
  26. }
  27. /////////////////////////////////////////////////////////////////////
  28. CFileSvcMgmtAbout::CFileSvcMgmtAbout()
  29. {
  30. m_uIdStrProvider = IDS_SNAPINABOUT_PROVIDER;
  31. m_uIdStrVersion = IDS_SNAPINABOUT_VERSION;
  32. m_uIdStrDestription = IDS_SNAPINABOUT_DESCR_FILESVC;
  33. m_uIdIconImage = IDI_ICON_FILEMGMT;
  34. m_uIdBitmapSmallImage = IDB_FILEMGMT_FOLDER_SMALL;
  35. m_uIdBitmapSmallImageOpen = IDB_FILEMGMT_FOLDER_SMALLOPEN;
  36. m_uIdBitmapLargeImage = IDB_FILEMGMT_FOLDER_LARGE;
  37. m_crImageMask = RGB(255, 0, 255);
  38. }