mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-06-15 07:00:38 +08:00

The sources can be obtained via: http://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-544.tar.gz
29 lines
542 B
C++
29 lines
542 B
C++
#pragma once
|
|
|
|
#include "Resource.h"
|
|
#include "afxwin.h"
|
|
|
|
// CAbout dialog
|
|
|
|
class CAbout : public CDialog
|
|
{
|
|
DECLARE_DYNAMIC(CAbout)
|
|
|
|
public:
|
|
CAbout(CWnd* pParent = NULL); // standard constructor
|
|
virtual ~CAbout();
|
|
|
|
// Dialog Data
|
|
enum { IDD = IDD_ABOUT };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
virtual HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
|
|
virtual BOOL OnInitDialog();
|
|
DECLARE_MESSAGE_MAP()
|
|
public:
|
|
CStatic m_componentCtrl;
|
|
CStatic m_legalCtrl;
|
|
CBrush m_bkBrush;
|
|
};
|