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

The sources can be obtained via: http://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-544.tar.gz
22 lines
334 B
C++
22 lines
334 B
C++
#pragma once
|
|
|
|
|
|
// CAbout dialog
|
|
|
|
class CAbout : public CDialog
|
|
{
|
|
DECLARE_DYNAMIC(CAbout)
|
|
|
|
public:
|
|
CAbout(CWnd* pParent = NULL); // standard constructor
|
|
virtual ~CAbout();
|
|
|
|
// Dialog Data
|
|
enum { IDD = IDD_DIALOG1 };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|