This commit is contained in:
biosvos
2026-08-07 17:38:18 +09:00
commit 873193a243
9613 changed files with 2755992 additions and 0 deletions
@@ -0,0 +1,30 @@
#pragma once
#include "afxwin.h"
// CBandwidthDlg 대화 상자입니다.
class CBandwidthDlg : public CDialog
{
DECLARE_DYNAMIC(CBandwidthDlg)
public:
CBandwidthDlg(CWnd* pParent = NULL); // 표준 생성자입니다.
virtual ~CBandwidthDlg();
// 대화 상자 데이터입니다.
enum { IDD = IDD_BANDWIDTH };
public:
CString m_sPath;
int m_nLevel;
CComboBox m_cboLevel;
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원입니다.
public:
virtual BOOL OnInitDialog();
DECLARE_MESSAGE_MAP()
};