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.

31 lines
762 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 2000 - 2001.
  5. //
  6. // File: snapabout.h
  7. //
  8. // Contents:
  9. //
  10. // History: 07-26-2001 Hiteshr Created
  11. //
  12. //----------------------------------------------------------------------------
  13. extern const CLSID CLSID_RoleSnapinAbout; // In-Proc server GUID
  14. //
  15. // CRoleSnapinAbout
  16. //
  17. class CRoleSnapinAbout :
  18. public CSnapinAbout,
  19. public CComCoClass<CRoleSnapinAbout, &CLSID_RoleSnapinAbout>
  20. {
  21. public:
  22. static HRESULT WINAPI UpdateRegistry(BOOL bRegister)
  23. {
  24. return _Module.UpdateRegistryCLSID(GetObjectCLSID(), bRegister);
  25. }
  26. CRoleSnapinAbout();
  27. ~CRoleSnapinAbout();
  28. };