mirror of https://github.com/tongzx/nt5src
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
20 lines
467 B
// About.h
|
|
|
|
#ifndef __ABOUT_H_INCLUDED__
|
|
#define __ABOUT_H_INCLUDED__
|
|
|
|
#include "stdabout.h"
|
|
|
|
// About for "Schema Manager" snapin
|
|
class CSchemaMgmtAbout :
|
|
public CSnapinAbout,
|
|
public CComCoClass<CSchemaMgmtAbout, &CLSID_SchemaManagementAbout>
|
|
|
|
{
|
|
public:
|
|
DECLARE_REGISTRY(CSchemaMgmtAbout, _T("SCHMMGMT.SchemaMgmtAboutObject.1"), _T("SCHMMGMT.SchemaMgmtAboutObject.1"), IDS_SCHMMGMT_DESC, THREADFLAGS_BOTH)
|
|
CSchemaMgmtAbout();
|
|
};
|
|
|
|
#endif // ~__ABOUT_H_INCLUDED__
|
|
|