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

📄 tmsgtypesfact.h

📁 游戏《家园》源码
💻 H
字号:
#if !defined(TMsgTypesFact_H)
#define TMsgTypesFact_H

//
// Titan Factory Server message types
// These values must be fixed in order to communiucate message
// structures to client.  For this reason, each enum value except
// for 'max' must have an assigned value.

// NEVER change an existing enum value and always add new values to
// the end!!!!

namespace WONMsg
{
	enum MsgTypeFact
	{
		// First message type.  Don't use
		FactMsgMin = 0,

		// Factory Server Messages
		FactStatusReply           = FactMsgMin+1,
		FactStartProcess          = FactMsgMin+2,
		FactStopProcess           = FactMsgMin+3,
		FactGetProcessConfig      = FactMsgMin+4,
		FactGetProcessList        = FactMsgMin+5,
		FactProcessListReply      = FactMsgMin+6,
		FactProcessConfigReply    = FactMsgMin+7,
		FactStartProcessUnicode   = FactMsgMin+8,
		FactGetProcessPorts       = FactMsgMin+9,
		FactGetAllProcesses		  = FactMsgMin+10,
		FactGetAllProcessesReply  = FactMsgMin+11,
		FactKillProcess			  = FactMsgMin+12,

		// Last Message type.  Don't use
		FactMsgMax
	};

};

#endif

⌨️ 快捷键说明

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