forked from jcable/mcl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFcastAboutDlg.cpp
31 lines (25 loc) · 1.4 KB
/
FcastAboutDlg.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "stdafx.h"
#include "FcastWin.h"
#include "FcastWinDlg.h"
#include "FcastAboutDlg.h"
#include "afxwin.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
END_MESSAGE_MAP()
CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
}
void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
DDX_Control(pDX, IDC_EDIT_CREDITS, m_Credits);
}
BOOL CAboutDlg::OnInitDialog()
{
CDialog::OnInitDialog();
m_Credits.SetWindowText("MCL comes with ABSOLUTELY NO WARRANTY; This is free software,\r\nand you are welcome to redistribute it under certain conditions;\r\nSee the GNU General Public License as published by the Free Software\r\nFoundation, version 2 or later, for more details.\r\n\r\nCredits:\r\n * Vincent Roca (since Oct 2000: INRIA R.A., before: Univ. Paris 6)\r\n * Julien Laboure (since May 2000: INRIA R.A.)\r\n * Benoit Mordelet (since December 2000: Activia Networks)\r\n * fec.c -- forward error corection based on Vandermonde matrices\r\n (C)1997-98 Luigi Rizzo ([email protected]) (980624)\r\n Portions derived from code by Phil Karn ([email protected]),\r\n Robert Morelos-Zaragoza ([email protected]) and\r\n Hari Thirumoorthy ([email protected]), Aug 1995");
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}