📄 ignore.h
字号:
/* * ignore.h: header for ignore.c * * Copyright 1990 Michael Sandrof * Copyright 1997 EPIC Software Labs * See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT */#ifndef __ignore_h__#define __ignore_h__/* Type of ignored nicks */#define IGNORE_NONE 0 /* 0 */#define IGNORE_MSGS 1 << 0 /* 1 */#define IGNORE_PUBLIC 1 << 1 /* 2 */#define IGNORE_WALLS 1 << 2 /* 4 */#define IGNORE_WALLOPS 1 << 3 /* 8 */#define IGNORE_INVITES 1 << 4 /* 16 */#define IGNORE_NOTICES 1 << 5 /* 32 */#define IGNORE_NOTES 1 << 6 /* 64 */#define IGNORE_CTCPS 1 << 7 /* 128 */#define IGNORE_TOPICS 1 << 8 /* 256 */#define IGNORE_NICKS 1 << 9 /* 512 */#define IGNORE_JOINS 1 << 10 /* 1024 */#define IGNORE_PARTS 1 << 11 /* 2048 */#define IGNORE_CRAP 1 << 12 /* 4096 */#define IGNORE_ALL (IGNORE_MSGS | IGNORE_PUBLIC | IGNORE_WALLS | \ IGNORE_WALLOPS | IGNORE_INVITES | IGNORE_NOTICES | \ IGNORE_NOTES | IGNORE_CTCPS | IGNORE_TOPICS | \ IGNORE_NICKS | IGNORE_JOINS | IGNORE_PARTS | \ IGNORE_CRAP)#define NOT_IGNORED 0#define IGNORED 1#define HIGHLIGHTED -1 BUILT_IN_COMMAND(ignore); int do_expire_ignores (void *); int check_ignore (const char *, const char *, int); int check_ignore_channel (const char *, const char *, const char *, int); char * get_ignores_by_pattern (char *, int); const char * get_ignore_types_by_pattern (char *); char * get_ignore_patterns_by_type (char *); char * ignorectl (char *);#endif /* _IGNORE_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -