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.

46 lines
1.2 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 2000 - 2001.
  5. //
  6. // File: snapabout.cpp
  7. //
  8. // Contents:
  9. //
  10. // History: 07-26-2001 Hiteshr Created
  11. //
  12. //----------------------------------------------------------------------------
  13. #include "headers.h"
  14. DEBUG_DECLARE_INSTANCE_COUNTER(CRoleSnapinAbout)
  15. // {FA9342F0-B15B-473c-A746-14FCD4C4A6AA}
  16. const GUID CLSID_RoleSnapinAbout =
  17. { 0xfa9342f0, 0xb15b, 0x473c, { 0xa7, 0x46, 0x14, 0xfc, 0xd4, 0xc4, 0xa6, 0xaa } };
  18. CRoleSnapinAbout::CRoleSnapinAbout()
  19. {
  20. TRACE_CONSTRUCTOR_EX(DEB_SNAPIN, CRoleSnapinAbout);
  21. DEBUG_INCREMENT_INSTANCE_COUNTER(CRoleSnapinAbout);
  22. m_szProvider = VER_COMPANYNAME_STR;
  23. m_szVersion = VER_PRODUCTVERSION_STR;
  24. m_uIdStrDestription = IDS_SNAPINABOUT_DESCRIPTION;
  25. m_uIdIconImage = IDI_ROLE_SNAPIN;
  26. m_uIdBitmapSmallImage = IDB_ABOUT_16x16;
  27. m_uIdBitmapSmallImageOpen = IDB_ABOUT_16x16;
  28. m_uIdBitmapLargeImage = IDB_ABOUT_32x32;
  29. m_crImageMask = BMP_COLOR_MASK;
  30. }
  31. CRoleSnapinAbout::~CRoleSnapinAbout()
  32. {
  33. TRACE_DESTRUCTOR_EX(DEB_SNAPIN, CRoleSnapinAbout);
  34. DEBUG_DECREMENT_INSTANCE_COUNTER(CRoleSnapinAbout);
  35. }