📄 who.h
字号:
/* * who.h -- header info for the WHO, ISON, and USERHOST queues. * Copyright 1996 EPIC Software Labs */#ifndef __who_h__#define __who_h__void clean_server_queues (int);/* WHO queue *//* XXX This should be in who.c */typedef struct WhoEntryT{ int dirty; int piggyback; int undernet_extended; char *undernet_extended_args; int dalnet_extended; char *dalnet_extended_args; int who_mask; char *who_target; char *who_name; char *who_host; char *who_server; char *who_nick; char *who_real; char *who_stuff; char *who_end; struct WhoEntryT *next; void (*line) (int, const char *, const char *, const char **); void (*end) (int, const char *, const char *, const char **);} WhoEntry; BUILT_IN_COMMAND(whocmd); void whobase (int, char *, void (*)(int, const char *, const char *, const char **), void (*)(int, const char *, const char *, const char **)); void whoreply (int, const char *, const char *, const char **); void xwhoreply (int, const char *, const char *, const char **); void who_end (int, const char *, const char *, const char **); int fake_who_end (int, const char *, const char *, const char *);/* ISON queue */typedef struct IsonEntryT{ char *ison_asked; char *ison_got; struct IsonEntryT *next; void (*line) (int, char *, char *);} IsonEntry; BUILT_IN_COMMAND(isoncmd); void isonbase (int refnum, char *args, void (*line) (int, char *, char *)); void ison_returned (int, const char *, const char *, const char **);/* USERHOST queue */typedef struct UserhostItemT{ char * nick; int oper; int connected; int away; const char * user; const char * host;} UserhostItem;typedef struct UserhostEntryT{ char * userhost_asked; char * text; struct UserhostEntryT * next; void (*func) (int, UserhostItem *, const char *, const char *);} UserhostEntry; BUILT_IN_COMMAND(userhostcmd); BUILT_IN_COMMAND(useripcmd); BUILT_IN_COMMAND(usripcmd); void userhostbase (int refnum, char *arg, void (*line) (int, UserhostItem *, const char *, const char *), int); void userhost_returned (int, const char *, const char *, const char **); void userhost_cmd_returned (int, UserhostItem *, const char *, const char *);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -