X-Git-Url: https://jfr.im/git/solanum.git/blobdiff_plain/6ca4dec95a74f181ff13f4a701e031154c0ef340..bfd95f010b0aaa29f367e13e617baf49a5b22a70:/include/hook.h diff --git a/include/hook.h b/include/hook.h index 7143d7ab..eb8c1a6d 100644 --- a/include/hook.h +++ b/include/hook.h @@ -1,8 +1,6 @@ /* * Copyright (C) 2004-2005 Lee Hardy * Copyright (C) 2004-2005 ircd-ratbox development team - * - * $Id: hook.h 906 2006-02-21 02:25:43Z nenolod $ */ #ifndef INCLUDED_HOOK_H #define INCLUDED_HOOK_H @@ -30,6 +28,12 @@ extern int h_new_local_user; extern int h_new_remote_user; extern int h_introduce_client; extern int h_can_kick; +extern int h_privmsg_channel; +extern int h_privmsg_user; +extern int h_conf_read_start; +extern int h_conf_read_end; +extern int h_outbound_msgbuf; +extern int h_rehash; void init_hook(void); int register_hook(const char *name); @@ -37,24 +41,34 @@ void add_hook(const char *name, hookfn fn); void remove_hook(const char *name, hookfn fn); void call_hook(int id, void *arg); +typedef struct +{ + struct Client *client; + void *arg1; + void *arg2; +} hook_data; + typedef struct { struct Client *client; const void *arg1; const void *arg2; -} hook_data; +} hook_cdata; typedef struct { struct Client *client; const void *arg1; int arg2; + int result; } hook_data_int; typedef struct { struct Client *client; struct Client *target; + struct Channel *chptr; + int approved; } hook_data_client; typedef struct @@ -68,7 +82,7 @@ typedef struct { struct Client *client; struct Channel *chptr; - char *key; + const char *key; } hook_data_channel_activity; typedef struct @@ -78,11 +92,14 @@ typedef struct struct membership *msptr; struct Client *target; int approved; + int dir; + const char *modestr; } hook_data_channel_approval; typedef struct { struct Client *client; + struct Client *target; int approved; } hook_data_client_approval; @@ -101,4 +118,34 @@ typedef struct unsigned int oldsnomask; } hook_data_umode_changed; +enum message_type { + MESSAGE_TYPE_NOTICE, + MESSAGE_TYPE_PRIVMSG, + MESSAGE_TYPE_PART, + MESSAGE_TYPE_COUNT +}; + +typedef struct +{ + enum message_type msgtype; + struct Client *source_p; + struct Channel *chptr; + const char *text; + int approved; +} hook_data_privmsg_channel; + +typedef struct +{ + enum message_type msgtype; + struct Client *source_p; + struct Client *target_p; + const char *text; + int approved; +} hook_data_privmsg_user; + +typedef struct +{ + bool signal; +} hook_data_rehash; + #endif