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

📄 udpsocket.h

📁 The application wizard has created this SoccerDoctor application for you. This application not onl
💻 H
字号:
#pragma once

class CUDPSocket
{
public:
	CUDPSocket(void);
	~CUDPSocket(void);
	bool Create(CString strHost,UINT nPort);
	bool Delete();
	bool Valid();
	int SendTo(const char* buf,int len);
	int RecvFrom(char* buf,int len);
private:	
	SOCKET _socket;
	SOCKADDR_IN _ServerAddr;
};

⌨️ 快捷键说明

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