mrDarker
2025-08-22 04d89bc9216553adcd0df87985a7665882924093
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
#pragma once
#include "afxwin.h"
 
 
// CLogViewOption ´ëÈ­ »óÀÚÀÔ´Ï´Ù.
 
class CLogViewOption : public CDialog
{
    DECLARE_DYNAMIC(CLogViewOption)
 
public:
    CLogViewOption(CWnd* pParent = NULL);   // Ç¥ÁØ »ý¼ºÀÚÀÔ´Ï´Ù.
    virtual ~CLogViewOption();
 
// ´ëÈ­ »óÀÚ µ¥ÀÌÅÍÀÔ´Ï´Ù.
    enum { IDD = IDD_DiaLog_Option };
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV Áö¿øÀÔ´Ï´Ù.
 
    DECLARE_MESSAGE_MAP()
public:
    int m_nOptionLogSaveDelay;
    int m_nOptionMemoryMapDelay;
    int m_nOptionCommandReadDelay;
    int m_nOptionLogSaveLevel;
    CComboBox m_ComboOptionSaveLevel;
    int m_nOptionListPrintCount;
    afx_msg void OnBnClickedOk();
};