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.
29 lines
817 B
29 lines
817 B
/////////////////////////////////////////////////////////////////////
|
|
// About.cpp
|
|
//
|
|
// Provide constructor for the CSnapinAbout implementation.
|
|
//
|
|
// HISTORY
|
|
// 01-Aug-97 t-danm Creation.
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
#include "stdafx.h"
|
|
#include "resource.h"
|
|
#include "about.h"
|
|
|
|
#include "stdabout.cpp"
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
CComputerMgmtAbout::CComputerMgmtAbout()
|
|
{
|
|
m_uIdStrProvider = IDS_SNAPINABOUT_PROVIDER;
|
|
m_uIdStrVersion = IDS_SNAPINABOUT_VERSION;
|
|
m_uIdStrDestription = IDS_SNAPINABOUT_DESCRIPTION;
|
|
m_uIdIconImage = IDI_COMPUTER;
|
|
m_uIdBitmapSmallImage = IDB_COMPUTER_SMALL;
|
|
m_uIdBitmapSmallImageOpen = IDB_COMPUTER_SMALL;
|
|
m_uIdBitmapLargeImage = IDB_COMPUTER_LARGE;
|
|
m_crImageMask = RGB(255, 0, 255);
|
|
}
|
|
|