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

📄 msgloginaccountex.h

📁 网络游戏魔域的服务端与客户端完整源代码 包括详细的说明文档与开发日志
💻 H
字号:
//--------------------------------------------------------------------------------------
// File Name: MsgLoginAccountEx.h
// Create by: Huang Yuhang
// Create on: 2004/11/12 15:54
//--------------------------------------------------------------------------------------
#ifndef _MSG_LOGINACCOUNTEX_H
#define _MSG_LOGINACCOUNTEX_H

#include "NetMsg.h"

class CMsgLoginAccountEx : public CNetMsg  
{
public:
	CMsgLoginAccountEx();
	virtual ~CMsgLoginAccountEx();

	BOOL	Create	(unsigned long uType, const char* pszAccount, const char* pszPsw, const char* pszServer, const char* szInfo);

public:	
	BOOL	Create		(char* pMsgBuf, DWORD dwSize);
	void	Process		(void* pInfo);

private:
	typedef struct{
		unsigned short	unMsgSize;
		unsigned short	unMsgType;
		unsigned long	unType;
		char			szAccount[_MAX_NAMESIZE_CLI];
		char			szPassword[_MAX_NAMESIZE_CLI];
		char			szServer[_MAX_NAMESIZE_CLI];
		char			szInfo[_MAX_NAMESIZE_CLI];		// 光盘标志
	}MSG_Info;
	
	MSG_Info*	m_pInfo;

};

#endif

⌨️ 快捷键说明

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