⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ex16_1clientdlg.h

📁 内容包括从VC++的基本范例到项目开发的许多典型的例子。是VC++初学者不可多得的好资料
💻 H
字号:
// Ex16_1ClientDlg.h : header file
//

#if !defined(AFX_EX16_1CLIENTDLG_H__623297FF_982F_4707_9D22_F16071760826__INCLUDED_)
#define AFX_EX16_1CLIENTDLG_H__623297FF_982F_4707_9D22_F16071760826__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "winsock.h"
#pragma comment(lib, "wsock32")

/////////////////////////////////////////////////////////////////////////////
// CEx16_1ClientDlg dialog

class CEx16_1ClientDlg : public CDialog
{
// Construction
public:
	CEx16_1ClientDlg(CWnd* pParent = NULL);	// standard constructor
	void CleanUp();
	void StartUp();
// Dialog Data
	//{{AFX_DATA(CEx16_1ClientDlg)
	enum { IDD = IDD_EX16_1CLIENT_DIALOG };
	CString	m_strPass;
	UINT	m_nPort;
	CString	m_strServerIP;
	CString	m_strUser;
	CString	m_strSend;
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CEx16_1ClientDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;
	SOCKET m_hSocket;
	SOCKADDR_IN m_addr;
	int ret;
	int error ;
	// Generated message map functions
	//{{AFX_MSG(CEx16_1ClientDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	virtual void OnOK();
	virtual void OnCancel();
	afx_msg void OnDestroy();
	afx_msg void OnSend();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_EX16_1CLIENTDLG_H__623297FF_982F_4707_9D22_F16071760826__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -