1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
/*
* 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 4
extern 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__ */
|