DragonNest/Client/NetTest/AddressDlg.h
2024-12-20 16:56:44 +08:00

27 lines
954 B
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
// CAddressDlg dialog
class CAddressDlg : public CDialog
{
DECLARE_DYNAMIC(CAddressDlg)
public:
CAddressDlg(CWnd* pParent = NULL); // standard constructor
virtual ~CAddressDlg();
// Dialog Data
enum { IDD = IDD_ADDRESS_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
public:
CString m_szAddress;
int m_nPort;
CString m_szID;
CString m_szPassword;
};