mirror of
https://github.com/weechat/weechat.git
synced 2026-06-27 05:16:38 +02:00
f854db17ff
New hooks: - hook - hook_command - hook_command_run - hook_completion - hook_config - hook_connect - hook_fd - hook_focus - hook_hdata - hook_hsignal - hook_info - hook_info_hashtable - hook_infolist - hook_line - hook_modifier - hook_print - hook_process - hook_signal - hook_timer - hook_url New lists (for hooks of type "hook"): - weechat_hooks_command, last_weechat_hook_command - weechat_hooks_command_run, last_weechat_hook_command_run - weechat_hooks_completion, last_weechat_hook_completion - weechat_hooks_config, last_weechat_hook_config - weechat_hooks_connect, last_weechat_hook_connect - weechat_hooks_fd, last_weechat_hook_fd - weechat_hooks_focus, last_weechat_hook_focus - weechat_hooks_hdata, last_weechat_hook_hdata - weechat_hooks_hsignal, last_weechat_hook_hsignal - weechat_hooks_info, last_weechat_hook_info - weechat_hooks_info_hashtable, last_weechat_hook_info_hashtable - weechat_hooks_infolist, last_weechat_hook_infolist - weechat_hooks_line, last_weechat_hook_line - weechat_hooks_modifier, last_weechat_hook_modifier - weechat_hooks_print, last_weechat_hook_print - weechat_hooks_process, last_weechat_hook_process - weechat_hooks_signal, last_weechat_hook_signal - weechat_hooks_timer, last_weechat_hook_timer - weechat_hooks_url, last_weechat_hook_url
56 lines
2.3 KiB
C
56 lines
2.3 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu <flashcode@flashtux.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* This file is part of WeeChat, the extensible chat client.
|
|
*
|
|
* WeeChat is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* WeeChat is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with WeeChat. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef WEECHAT_HOOK_CONFIG_H
|
|
#define WEECHAT_HOOK_CONFIG_H
|
|
|
|
struct t_weechat_plugin;
|
|
struct t_infolist_item;
|
|
|
|
#define HOOK_CONFIG(hook, var) (((struct t_hook_config *)hook->hook_data)->var)
|
|
|
|
typedef int (t_hook_callback_config)(const void *pointer, void *data,
|
|
const char *option, const char *value);
|
|
|
|
struct t_hook_config
|
|
{
|
|
t_hook_callback_config *callback; /* config callback */
|
|
char *option; /* config option for hook */
|
|
/* (NULL = hook for all options) */
|
|
};
|
|
|
|
extern char *hook_config_get_description (struct t_hook *hook);
|
|
extern struct t_hook *hook_config (struct t_weechat_plugin *plugin,
|
|
const char *option,
|
|
t_hook_callback_config *callback,
|
|
const void *callback_pointer,
|
|
void *callback_data);
|
|
extern void hook_config_exec (const char *option, const char *value);
|
|
extern void hook_config_free_data (struct t_hook *hook);
|
|
extern struct t_hdata *hook_config_hdata_hook_config_cb (const void *pointer,
|
|
void *data,
|
|
const char *hdata_name);
|
|
extern int hook_config_add_to_infolist (struct t_infolist_item *item,
|
|
struct t_hook *hook);
|
|
extern void hook_config_print_log (struct t_hook *hook);
|
|
|
|
#endif /* WEECHAT_HOOK_CONFIG_H */
|