mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-06-10 23:02:28 +08:00

The sources can be obtained via: http://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-544.tar.gz
32 lines
436 B
C++
32 lines
436 B
C++
// About.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "PrinterSetupWizardApp.h"
|
|
#include "About.h"
|
|
|
|
|
|
// CAbout dialog
|
|
|
|
IMPLEMENT_DYNAMIC(CAbout, CDialog)
|
|
CAbout::CAbout(CWnd* pParent /*=NULL*/)
|
|
: CDialog(CAbout::IDD, pParent)
|
|
{
|
|
}
|
|
|
|
CAbout::~CAbout()
|
|
{
|
|
}
|
|
|
|
void CAbout::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
CDialog::DoDataExchange(pDX);
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CAbout, CDialog)
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
// CAbout message handlers
|