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.

25 lines
645 B

  1. // About.h
  2. #ifndef __ABOUT_H_INCLUDED__
  3. #define __ABOUT_H_INCLUDED__
  4. // About for "Certificate Templates" snapin
  5. class CCertTemplatesAbout :
  6. public CSnapinAbout,
  7. public CComCoClass<CCertTemplatesAbout, &CLSID_CertTemplatesAbout>
  8. {
  9. public:
  10. DECLARE_REGISTRY(CCertTemplatesAbout, _T("CERTTMPL.CertTemplatesAboutObject.1"), _T("CERTTMPL.CertTemplatesAboutObject.1"), IDS_CERTTMPL_DESC, THREADFLAGS_BOTH)
  11. CCertTemplatesAbout();
  12. };
  13. // version information
  14. #include <ntverp.h>
  15. #define IDS_SNAPINABOUT_VERSION VER_PRODUCTVERSION_STR
  16. #define IDS_SNAPINABOUT_PROVIDER VER_COMPANYNAME_STR
  17. #endif // ~__ABOUT_H_INCLUDED__