xziptest.cpp

来自「存C写的zip压缩、解压缩源代码。主要对文件操作」· C++ 代码 · 共 53 行

CPP
53
字号
// XZipTest.cpp : Defines the class behaviors for the application.
//

#include "stdafx.h"
#include "XZipTest.h"
#include "XZipTestDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CXZipTestApp

BEGIN_MESSAGE_MAP(CXZipTestApp, CWinApp)
	//{{AFX_MSG_MAP(CXZipTestApp)
	//}}AFX_MSG
	ON_COMMAND(ID_HELP, CWinApp::OnHelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CXZipTestApp construction

CXZipTestApp::CXZipTestApp()
{
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CXZipTestApp object

CXZipTestApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CXZipTestApp initialization

BOOL CXZipTestApp::InitInstance()
{
#if _MFC_VER < 0x700
#ifdef _AFXDLL
	Enable3dControls();			// Call this when using MFC in a shared DLL
#else
	Enable3dControlsStatic();	// Call this when linking to MFC statically
#endif
#endif

	CXZipTestDlg dlg;
	m_pMainWnd = &dlg;
	dlg.DoModal();
	return FALSE;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?