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.

29 lines
791 B

  1. /////////////////////////////////////////////////////////////////////
  2. // About.cpp
  3. //
  4. // Provide constructor for the CSnapinAbout implementation.
  5. //
  6. // HISTORY
  7. // 01-Aug-97 t-danm Creation.
  8. /////////////////////////////////////////////////////////////////////
  9. #include "stdafx.h"
  10. #include "resource.h"
  11. #include "about.h"
  12. #include "stdabout.cpp"
  13. /////////////////////////////////////////////////////////////////////
  14. CSchemaMgmtAbout::CSchemaMgmtAbout()
  15. {
  16. m_uIdStrProvider = IDS_SNAPINABOUT_PROVIDER;
  17. m_uIdStrVersion = IDS_SNAPINABOUT_VERSION;
  18. m_uIdStrDestription = IDS_SNAPINABOUT_DESCRIPTION;
  19. m_uIdIconImage = IDI_CLASS;
  20. m_uIdBitmapSmallImage = IDB_CLASS_SMALL;
  21. m_uIdBitmapSmallImageOpen = IDB_CLASS_SMALL;
  22. m_uIdBitmapLargeImage = IDB_CLASS;
  23. m_crImageMask = RGB(0, 255, 0);
  24. }