// UsbKey.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "UsbKey.h"
#include "UsbKeySheet.h"
#include "UsbCertPage.h"
#include "UsbCaPage.h"
//#include "UsbEvpPage.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CUsbKeyApp
BEGIN_MESSAGE_MAP(CUsbKeyApp, CWinApp)
//{{AFX_MSG_MAP(CUsbKeyApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP, CWinApp::OnHelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CUsbKeyApp construction
CUsbKeyApp::CUsbKeyApp()
{
// TODO: add construction code here,
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CUsbKeyApp object
CUsbKeyApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CUsbKeyApp initialization
BOOL CUsbKeyApp::InitInstance()
{
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable, you should remove from the following
// the specific initialization routines you do not need.
// if (!AfxSocketInit())
// {
// AfxMessageBox("IDP_SOCKETS_INIT_FAILED");
// return FALSE;
// }
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
// m_VerifySo=false;
// m_VerifyUser=false;
// m_PubKey=false;
// m_PriKey=false;
// m_ExternKey=false;
// m_ChangeKey=false;;
CUsbKeySheet dlg("TinyCA 证书小工具");
dlg.m_psh.dwFlags |= PSH_NOAPPLYNOW |PSH_USEHICON;
dlg.m_psh.dwFlags&= ~PSH_HASHELP;
dlg.m_psh.nStartPage = 0;//本程序此处不能改动
dlg.m_psh.hIcon=AfxGetApp()->LoadIcon(IDI_ICONKEY);
CUsbCaPage pageCa;
pageCa.m_psp.dwFlags |= PSH_USEHICON;
pageCa.m_psp.hIcon=AfxGetApp()->LoadIcon(IDI_ICON_CERT);
CUsbCertPage pageCert;
pageCert.m_psp.dwFlags |= PSH_USEHICON;
pageCert.m_psp.hIcon=AfxGetApp()->LoadIcon(IDI_ICONFILE);
// CUsbEvpPage pageEvp;
// pageEvp.m_psp.dwFlags |= PSH_USEHICON;
// pageEvp.m_psp.hIcon=AfxGetApp()->LoadIcon(IDI_ICON_EVP);
dlg.AddPage(&pageCa);
dlg.AddPage(&pageCert);
// dlg.AddPage(&pageEvp);
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
// if (nResponse == IDOK)
// {
// TODO: Place code here to handle when the dialog is
// dismissed with OK
// }
// else if (nResponse == IDCANCEL)
// {
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
// }
// Since the dialog has been closed, return FALSE so that we exit the
// application, rather than start the application's message pump.
return FALSE;
}