⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 terms.cpp

📁 WMD驱动编程,本人收集整理的10多个例子和编程环境配置文档,特别是8139驱动,加了许多说明,并测试通过.
💻 CPP
字号:
// Terms.cpp : implementation file
//

#include "stdafx.h"
#include "IpMonitor.h"
#include "Terms.h"

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

/////////////////////////////////////////////////////////////////////////////
// Terms dialog
const TCHAR license[] = _T("\r\n\r\n "
        "Copyright (C) 2000 Hollis Technology Solutions\r\n"
		"All Rights Reserved\r\n\r\n"
		"THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND,"
		"EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, "
		"THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, "
		"OR NON-INFRINGEMENT OF THIRD PARTY RIGHTS"
		"\r\n\r\n");

Terms::Terms(CWnd* pParent /*=NULL*/)
	: CDialog(Terms::IDD, pParent)
{
	//{{AFX_DATA_INIT(Terms)
	m_editTerms = license;
	//}}AFX_DATA_INIT
}


void Terms::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(Terms)
	DDX_Text(pDX, IDC_EDIT_TERMS, m_editTerms);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(Terms, CDialog)
	//{{AFX_MSG_MAP(Terms)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// Terms message handlers

⌨️ 快捷键说明

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