selfextctrl.cpp
来自「《Windows应用程序捆绑核心编程》配套源码」· C++ 代码 · 共 49 行
CPP
49 行
// SelfExtCtrl.cpp : 制作自分解文件的控制体.
//
#include "stdafx.h"
#include "SelfExtCtrl.h"
#include "..\\SelfExt_class\\SelfExt.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CSelfExtCtrlApp
BEGIN_MESSAGE_MAP(CSelfExtCtrlApp, CWinApp)
//{{AFX_MSG_MAP(CSelfExtCtrlApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CSelfExtCtrlApp construction
CSelfExtCtrlApp::CSelfExtCtrlApp()
{
// TODO: add construction code here,
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CSelfExtCtrlApp object
CSelfExtCtrlApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CSelfExtCtrlApp initialization
BOOL CSelfExtCtrlApp::InitInstance()
{
CSelfExt extract;
extract.MakeSelfExtract();
return FALSE;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?