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
674 B
26 lines
674 B
// About.h
|
|
|
|
#ifndef __ABOUT_H_INCLUDED__
|
|
#define __ABOUT_H_INCLUDED__
|
|
|
|
#include "stdabout.h"
|
|
|
|
// About for "Computer Management" snapin
|
|
class CComputerMgmtAbout :
|
|
public CSnapinAbout,
|
|
public CComCoClass<CComputerMgmtAbout, &CLSID_ComputerManagementAbout>
|
|
|
|
{
|
|
public:
|
|
DECLARE_REGISTRY(CComputerMgmtAbout, _T("MYCOMPUT.ComputerMgmtAboutObject.1"), _T("MYCOMPUT.ComputerMgmtAboutObject.1"), IDS_MYCOMPUT_DESC, THREADFLAGS_BOTH)
|
|
CComputerMgmtAbout();
|
|
};
|
|
|
|
// version and provider strings
|
|
|
|
#include <ntverp.h>
|
|
#define IDS_SNAPINABOUT_VERSION VER_PRODUCTVERSION_STR
|
|
#define IDS_SNAPINABOUT_PROVIDER VER_COMPANYNAME_STR
|
|
|
|
#endif // ~__ABOUT_H_INCLUDED__
|
|
|