Init: Migrate SimpleRemoter (Since v1.3.1) to Gitea
This commit is contained in:
32
server/2015Remote/TalkDlg.h
Normal file
32
server/2015Remote/TalkDlg.h
Normal file
@@ -0,0 +1,32 @@
|
||||
#pragma once
|
||||
#include "IOCPServer.h"
|
||||
#include "afxwin.h"
|
||||
|
||||
// CTalkDlg 对话框
|
||||
|
||||
class CTalkDlg : public DialogBase
|
||||
{
|
||||
DECLARE_DYNAMIC(CTalkDlg)
|
||||
|
||||
public:
|
||||
CTalkDlg(CWnd* Parent, Server* IOCPServer=NULL, CONTEXT_OBJECT *ContextObject=NULL); // 标准构造函数
|
||||
virtual ~CTalkDlg();
|
||||
|
||||
// 对话框数据
|
||||
enum { IDD = IDD_DIALOG_TALK };
|
||||
|
||||
void OnReceiveComplete(void)
|
||||
{
|
||||
}
|
||||
|
||||
protected:
|
||||
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
||||
|
||||
DECLARE_MESSAGE_MAP()
|
||||
public:
|
||||
CEdit m_EditTalk;
|
||||
virtual BOOL OnInitDialog();
|
||||
afx_msg void OnBnClickedButtonTalk();
|
||||
virtual BOOL PreTranslateMessage(MSG* pMsg);
|
||||
afx_msg void OnClose();
|
||||
};
|
||||
Reference in New Issue
Block a user