1. 최초 커밋

This commit is contained in:
2021-05-02 15:31:55 +09:00
commit eddba8f209
44 changed files with 4131 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
#include "afxwin.h"
// CConnectSocket <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
class CConnectSocket : public CSocket
{
public:
CConnectSocket();
virtual ~CConnectSocket();
virtual void OnClose(int nErrorCode);
virtual void OnReceive(int nErrorCode);
public:
BOOL ServerConnectState;
};