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

📄 cmd-root.txt

📁 Lachesis an IRCRPG combat engine written in a combination of C and C++. The combat engine is being w
💻 TXT
字号:
void Cmd_Alloc(void (*f)(void *, int, const char *), const char *, int);	Command modules call this to announce themselves to the command	subsystem. First argument is a pointer to a command handler	function (arguments along the lines of Cmd_Root). Second argument	is the name of the command the handler function is called for.	Third argument is the required access level for that command.void Cmd_Init();	Initializes the included modules. The contents of this function	are generated by the mkmoddep script.void Cmd_Cleanup();	Cleans up the command subsystem. Called when shutting down the program.void Cmd_Root(void *, int, const char *);	The actual command handler called by auth.cc, this takes a cookie	and access level that collectively identify the user of the command,	and a string indicating the string sent. If a registered command	is the first word in the string *and* the access level is high enough	for that command, the remainder of the string is passed to the	appropriate handler.@(#) $Id: cmd-root.txt,v 1.1.1.1 2004/01/16 07:28:15 lachesis Exp $

⌨️ 快捷键说明

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