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.

26 lines
655 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. // version and provider strings
  15. #include <ntverp.h>
  16. #define IDS_SNAPINABOUT_VERSION VER_PRODUCTVERSION_STR
  17. #define IDS_SNAPINABOUT_PROVIDER VER_COMPANYNAME_STR
  18. #endif // ~__ABOUT_H_INCLUDED__