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.

20 lines
467 B

  1. // About.h
  2. #ifndef __ABOUT_H_INCLUDED__
  3. #define __ABOUT_H_INCLUDED__
  4. #include "stdabout.h"
  5. // About for "Schema Manager" snapin
  6. class CSchemaMgmtAbout :
  7. public CSnapinAbout,
  8. public CComCoClass<CSchemaMgmtAbout, &CLSID_SchemaManagementAbout>
  9. {
  10. public:
  11. DECLARE_REGISTRY(CSchemaMgmtAbout, _T("SCHMMGMT.SchemaMgmtAboutObject.1"), _T("SCHMMGMT.SchemaMgmtAboutObject.1"), IDS_SCHMMGMT_DESC, THREADFLAGS_BOTH)
  12. CSchemaMgmtAbout();
  13. };
  14. #endif // ~__ABOUT_H_INCLUDED__