commands.h

来自「EPIC IRC客户端。来源于IRCII客户端但做了很多性能和功能的优化。」· C头文件 代码 · 共 44 行

H
44
字号
/* * commands.h: header for commands.c * * Copyright 1990 Michael Sandrof * Copyright 1994 Matthew Green * Copyright 1997 EPIC Software Labs * See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT  */#ifndef __commands_h__#define __commands_h__/* flags used by e_away */#define AWAY_ONE 			0#define AWAY_ALL 			1/* flags used by parse_line */#define SECURITY_NO_VARIABLE_COMMAND	1#define SECURITY_NO_NONINTERACTIVE_EXEC 2#define SECURITY_NO_NONINTERACTIVE_SET	4extern	int	will_catch_break_exceptions;extern	int	will_catch_continue_exceptions;extern	int	will_catch_return_exceptions;extern	int	break_exception;extern	int	continue_exception;extern	int	return_exception;extern	int	system_exception;extern	int	need_defered_commands;	void	ExecuteTimers		(void);	void	parse_line 		(const char *, const char *, const char *, int, int);	BUILT_IN_COMMAND(load);	void	send_text	 	(const char *, const char *, const char *, int);	int	redirect_text		(int, const char *, const char *, char *, int);	int	command_exist		(char *);	BUILT_IN_COMMAND(e_channel);	void	do_defered_commands	(void);	char	*get_all_commands	(void);	char	*get_command		(const char *);#endif /* __commands_h__ */

⌨️ 快捷键说明

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