?? termsock.h
字號:
//
// TERMSOCK.H -- Socket derived from CAsyncSocket
//
#ifndef __TERMSOCK_H__
#define __TERMSOCK_H__
//網(wǎng)絡(luò)連接類
class CTermSocket : public CAsyncSocket
{
DECLARE_DYNAMIC(CTermSocket);
// Implementation
protected:
//連接
virtual void OnConnect(int nErrorCode);
//發(fā)送數(shù)據(jù)
virtual void OnSend(int nErrorCode);
//接收數(shù)據(jù)
virtual void OnReceive(int nErrorCode);
//關(guān)閉
virtual void OnClose(int nErrorCode);
};
#endif // __TERMSOCK_H__
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -