Init: Migrate SimpleRemoter (Since v1.3.1) to Gitea

This commit is contained in:
yuanyuanxiang
2026-04-19 19:55:01 +02:00
commit 5a325a202b
744 changed files with 235562 additions and 0 deletions

View 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();
};