001.cpp

来自「《Visual C++视频技术方案宝典》配套光盘」· C++ 代码 · 共 69 行

CPP
69
字号
// 001.cpp : Defines the class behaviors for the application.
//

#include "stdafx.h"
#include "001.h"
#include "001Dlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CMy001App

BEGIN_MESSAGE_MAP(CMy001App, CWinApp)
	//{{AFX_MSG_MAP(CMy001App)
		// 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()

/////////////////////////////////////////////////////////////////////////////
// CMy001App construction

CMy001App::CMy001App()
{
	// TODO: add construction code here,
	// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CMy001App object

CMy001App theApp;

/////////////////////////////////////////////////////////////////////////////
// CMy001App initialization

BOOL CMy001App::InitInstance()
{
	AfxEnableControlContainer();

#ifdef _AFXDLL
	Enable3dControls();		
#else
	Enable3dControlsStatic()
#endif

	//初始化套接字
	WSADATA wsd;
	WSAStartup(MAKEWORD(2,2),&wsd);

	CMy001Dlg dlg;
	m_pMainWnd = &dlg;
	int nResponse = dlg.DoModal();
	if (nResponse == IDOK)
	{

	}
	else if (nResponse == IDCANCEL)
	{

	}
	return FALSE;
}

⌨️ 快捷键说明

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