blob: 8a214f981ff4e92bf67d5cbac7ba6d72d912a89b (
plain)
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
32
33
34
35
36
37
38
39
|
// Night Security StubDlg.h : header file
//
#if !defined(AFX_CmdLineDLG_H__ADB16FC8_1B31_11D2_B2D4_0020182B97FC__INCLUDED_)
#define AFX_CmdLineDLG_H__ADB16FC8_1B31_11D2_B2D4_0020182B97FC__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
#include <atlwin.h>
#include "resource.h"
typedef CSimpleDialog<IDD_CMDLINE_DLG, TRUE> CmdLineDlg;
/////////////////////////////////////////////////////////////////////////////
// CCmdLineDlg dialog
class CCmdLineDlg
: public CmdLineDlg
{
// Construction
public:
CCmdLineDlg(); // standard constructor
// Dialog Data
BEGIN_MSG_MAP(CNormalPage)
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
CHAIN_MSG_MAP(CmdLineDlg)
END_MSG_MAP()
// Generated message map functions
LRESULT OnInitDialog(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_CmdLineDLG_H__ADB16FC8_1B31_11D2_B2D4_0020182B97FC__INCLUDED_)
|