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.

25 lines
759 B

  1. /////////////////////////////////////////////////////////////////////
  2. // About.cpp
  3. //
  4. // Provide constructor for the CSnapinAbout implementation.
  5. //
  6. /////////////////////////////////////////////////////////////////////
  7. #include "stdafx.h"
  8. #include "about.h"
  9. #include "stdabout.cpp"
  10. /////////////////////////////////////////////////////////////////////
  11. CCertTemplatesAbout::CCertTemplatesAbout()
  12. {
  13. m_uIdStrProvider = IDS_SNAPINABOUT_PROVIDER;
  14. m_uIdStrVersion = IDS_SNAPINABOUT_VERSION;
  15. m_uIdStrDestription = IDS_SNAPINABOUT_DESCRIPTION;
  16. m_uIdIconImage = IDI_CERT_TEMPLATEV2;
  17. m_uIdBitmapSmallImage = IDB_CERTTMPL_SMALL;
  18. m_uIdBitmapSmallImageOpen = IDB_CERTTMPL_SMALL;
  19. m_uIdBitmapLargeImage = IDB_CERTTMPL_LARGE;
  20. m_crImageMask = RGB(255, 0, 255);
  21. }