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.
31 lines
813 B
31 lines
813 B
// About.h
|
|
|
|
#ifndef __ABOUT_H_INCLUDED__
|
|
#define __ABOUT_H_INCLUDED__
|
|
|
|
#include "stdabout.h"
|
|
|
|
// About for "File Services"
|
|
class CFileSvcMgmtAbout :
|
|
public CSnapinAbout,
|
|
public CComCoClass<CFileSvcMgmtAbout, &CLSID_FileServiceManagementAbout>
|
|
|
|
{
|
|
public:
|
|
DECLARE_REGISTRY(CFileSvcMgmtAbout, _T("FILEMGMT.FileSvcMgmtAboutObject.1"), _T("FILEMGMT.FileSvcMgmtAboutObject.1"), IDS_FILEMGMT_DESC, THREADFLAGS_BOTH)
|
|
CFileSvcMgmtAbout();
|
|
};
|
|
|
|
// About for "System Services"
|
|
class CServiceMgmtAbout :
|
|
public CSnapinAbout,
|
|
public CComCoClass<CServiceMgmtAbout, &CLSID_SystemServiceManagementAbout>
|
|
{
|
|
public:
|
|
DECLARE_REGISTRY(CServiceMgmtAbout, _T("SVCMGMT.ServiceMgmtAboutObject.1"), _T("SVCMGMT.ServiceMgmtAboutObject.1"), IDS_SVCVWR_DESC, THREADFLAGS_BOTH)
|
|
CServiceMgmtAbout();
|
|
};
|
|
|
|
|
|
#endif // ~__ABOUT_H_INCLUDED__
|
|
|