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
776 B
25 lines
776 B
/////////////////////////////////////////////////////////////////////
|
|
// About.cpp
|
|
//
|
|
// Provide constructor for the CSnapinAbout implementation.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
#include "stdafx.h"
|
|
#include "about.h"
|
|
|
|
#include "stdabout.cpp"
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
CCertTemplatesAbout::CCertTemplatesAbout()
|
|
{
|
|
m_szProvider = IDS_SNAPINABOUT_PROVIDER;
|
|
m_szVersion = IDS_SNAPINABOUT_VERSION;
|
|
m_uIdStrDestription = IDS_SNAPINABOUT_DESCRIPTION;
|
|
m_uIdIconImage = IDI_CERT_TEMPLATEV2;
|
|
m_uIdBitmapSmallImage = IDB_CERTTMPL_SMALL;
|
|
m_uIdBitmapSmallImageOpen = IDB_CERTTMPL_SMALL;
|
|
m_uIdBitmapLargeImage = IDB_CERTTMPL_LARGE;
|
|
m_crImageMask = RGB(255, 0, 255);
|
|
}
|
|
|