terms.cpp

来自「WMD驱动编程,本人收集整理的10多个例子和编程环境配置文档,特别是8139驱动」· C++ 代码 · 共 51 行

CPP
51
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?