mirror of
https://github.com/weechat/weechat.git
synced 2026-06-25 12:26:40 +02:00
f5038bccbc
At the moment, building WeeChat triggers several thousand -Wstrict-prototypes diagnostics. This is due to its source code using an empty argument list for functions and function pointers that take no arguments, instead of explicitly declaring that they take no arguments by using a void list. This commit replaces all empty argument lists with a void list. Note that Ruby's headers also suffer the same problem, which WeeChat can't do anything to fix. Thus, building WeeChat with the Ruby plugin enabled will still issue approximately 30 such diagnostics.
229 lines
13 KiB
C
229 lines
13 KiB
C
/*
|
|
* Copyright (C) 2003-2025 Sébastien Helleu <flashcode@flashtux.org>
|
|
*
|
|
* 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_PLUGIN_PLUGIN_SCRIPT_H
|
|
#define WEECHAT_PLUGIN_PLUGIN_SCRIPT_H
|
|
|
|
#define WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE 16
|
|
|
|
#define WEECHAT_SCRIPT_EVAL_NAME "__eval__"
|
|
|
|
#define WEECHAT_SCRIPT_MSG_NOT_INIT(__current_script, \
|
|
__function) \
|
|
weechat_printf (NULL, \
|
|
weechat_gettext("%s%s: unable to call function " \
|
|
"\"%s\", script is not " \
|
|
"initialized (script: %s)"), \
|
|
weechat_prefix ("error"), weechat_plugin->name, \
|
|
__function, \
|
|
(__current_script) ? __current_script : "-");
|
|
#define WEECHAT_SCRIPT_MSG_WRONG_ARGS(__current_script, \
|
|
__function) \
|
|
weechat_printf (NULL, \
|
|
weechat_gettext("%s%s: wrong arguments for " \
|
|
"function \"%s\" (script: %s)"), \
|
|
weechat_prefix ("error"), weechat_plugin->name, \
|
|
__function, \
|
|
(__current_script) ? __current_script : "-");
|
|
|
|
#define WEECHAT_SCRIPT_CONST_INT(__name) \
|
|
{ #__name, __name, NULL }
|
|
#define WEECHAT_SCRIPT_CONST_STR(__name) \
|
|
{ #__name, 0, __name }
|
|
\
|
|
/* constants which defines return types for weechat_<lang>_exec functions */
|
|
|
|
enum t_weechat_script_exec_type
|
|
{
|
|
WEECHAT_SCRIPT_EXEC_INT = 0,
|
|
WEECHAT_SCRIPT_EXEC_STRING,
|
|
WEECHAT_SCRIPT_EXEC_POINTER,
|
|
WEECHAT_SCRIPT_EXEC_HASHTABLE,
|
|
WEECHAT_SCRIPT_EXEC_IGNORE,
|
|
};
|
|
|
|
struct t_weechat_script_constant
|
|
{
|
|
char *name; /* constant name */
|
|
int value_integer; /* value as integer */
|
|
char *value_string; /* value as string */
|
|
};
|
|
|
|
struct t_plugin_script
|
|
{
|
|
/* script variables */
|
|
char *filename; /* name of script on disk */
|
|
void *interpreter; /* interpreter for script */
|
|
char *name; /* script name */
|
|
char *author; /* author name/mail */
|
|
char *version; /* plugin version */
|
|
char *license; /* script license */
|
|
char *description; /* plugin description */
|
|
char *shutdown_func; /* function when script is unloaded*/
|
|
char *charset; /* script charset */
|
|
int unloading; /* script is being unloaded */
|
|
struct t_plugin_script *prev_script; /* link to previous script */
|
|
struct t_plugin_script *next_script; /* link to next script */
|
|
};
|
|
|
|
struct t_plugin_script_data
|
|
{
|
|
/* variables */
|
|
struct t_config_file **config_file;
|
|
struct t_config_option **config_look_check_license;
|
|
struct t_config_option **config_look_eval_keep_context;
|
|
struct t_plugin_script **scripts;
|
|
struct t_plugin_script **last_script;
|
|
|
|
/* callbacks */
|
|
int (*callback_command) (const void *pointer, void *data,
|
|
struct t_gui_buffer *buffer,
|
|
int argc, char **argv, char **argv_eol);
|
|
int (*callback_completion) (const void *pointer, void *data,
|
|
const char *completion_item,
|
|
struct t_gui_buffer *buffer,
|
|
struct t_gui_completion *completion);
|
|
struct t_hdata *(*callback_hdata) (const void *pointer,
|
|
void *data,
|
|
const char *hdata_name);
|
|
char *(*callback_info_eval) (const void *pointer,
|
|
void *data,
|
|
const char *info_name,
|
|
const char *arguments);
|
|
struct t_infolist *(*callback_infolist) (const void *pointer,
|
|
void *data,
|
|
const char *infolist_name,
|
|
void *obj_pointer,
|
|
const char *arguments);
|
|
int (*callback_signal_debug_dump) (const void *pointer, void *data,
|
|
const char *signal,
|
|
const char *type_data,
|
|
void *signal_data);
|
|
int (*callback_signal_script_action) (const void *pointer, void *data,
|
|
const char *signal,
|
|
const char *type_data,
|
|
void *signal_data);
|
|
void (*callback_load_file) (void *data, const char *filename);
|
|
|
|
/* functions */
|
|
void (*init_before_autoload) (void);
|
|
void (*unload_all) (void);
|
|
};
|
|
|
|
extern struct t_weechat_script_constant weechat_script_constants[];
|
|
|
|
extern void plugin_script_display_interpreter (struct t_weechat_plugin *plugin,
|
|
int indent);
|
|
extern void plugin_script_init (struct t_weechat_plugin *weechat_plugin,
|
|
struct t_plugin_script_data *plugin_data);
|
|
extern int plugin_script_valid (struct t_plugin_script *scripts,
|
|
struct t_plugin_script *script);
|
|
extern const char *plugin_script_ptr2str (void *pointer);
|
|
extern void *plugin_script_str2ptr (struct t_weechat_plugin *weechat_plugin,
|
|
const char *script_name,
|
|
const char *function_name,
|
|
const char *pointer_str);
|
|
extern char *plugin_script_build_function_and_data (const char *function,
|
|
const char *data);
|
|
extern void plugin_script_get_function_and_data (void *callback_data,
|
|
const char **function,
|
|
const char **data);
|
|
extern void plugin_script_auto_load (struct t_weechat_plugin *weechat_plugin,
|
|
void (*callback)(void *data,
|
|
const char *filename));
|
|
extern struct t_plugin_script *plugin_script_search (struct t_plugin_script *scripts,
|
|
const char *name);
|
|
extern char *plugin_script_search_path (struct t_weechat_plugin *weechat_plugin,
|
|
const char *filename,
|
|
int search_system_dir);
|
|
extern struct t_plugin_script *plugin_script_alloc (const char *filename,
|
|
const char *name,
|
|
const char *author,
|
|
const char *version,
|
|
const char *license,
|
|
const char *description,
|
|
const char *shutdown_func,
|
|
const char *charset);
|
|
extern struct t_plugin_script *plugin_script_add (struct t_weechat_plugin *weechat_plugin,
|
|
struct t_plugin_script_data *plugin_data,
|
|
const char *filename,
|
|
const char *name,
|
|
const char *author,
|
|
const char *version,
|
|
const char *license,
|
|
const char *description,
|
|
const char *shutdown_func,
|
|
const char *charset);
|
|
extern void plugin_script_set_buffer_callbacks (struct t_weechat_plugin *weechat_plugin,
|
|
struct t_plugin_script *scripts,
|
|
struct t_plugin_script *script,
|
|
int (*callback_buffer_input) (const void *pointer,
|
|
void *data,
|
|
struct t_gui_buffer *buffer,
|
|
const char *input_data),
|
|
int (*callback_buffer_close) (const void *pointer,
|
|
void *data,
|
|
struct t_gui_buffer *buffer));
|
|
extern void plugin_script_free (struct t_plugin_script *script);
|
|
extern void plugin_script_remove (struct t_weechat_plugin *weechat_plugin,
|
|
struct t_plugin_script **scripts,
|
|
struct t_plugin_script **last_script,
|
|
struct t_plugin_script *script);
|
|
extern void plugin_script_completion (struct t_weechat_plugin *weechat_plugin,
|
|
struct t_gui_completion *completion,
|
|
struct t_plugin_script *scripts);
|
|
extern void plugin_script_action_add (char **action_list, const char *name);
|
|
extern void plugin_script_action_install (struct t_weechat_plugin *weechat_plugin,
|
|
struct t_plugin_script *scripts,
|
|
void (*script_unload)(struct t_plugin_script *script),
|
|
struct t_plugin_script *(*script_load)(const char *filename,
|
|
const char *code),
|
|
int *quiet,
|
|
char **list);
|
|
extern void plugin_script_action_remove (struct t_weechat_plugin *weechat_plugin,
|
|
struct t_plugin_script *scripts,
|
|
void (*script_unload)(struct t_plugin_script *script),
|
|
int *quiet,
|
|
char **list);
|
|
extern void plugin_script_action_autoload (struct t_weechat_plugin *weechat_plugin,
|
|
int *quiet,
|
|
char **list);
|
|
extern void plugin_script_display_list (struct t_weechat_plugin *weechat_plugin,
|
|
struct t_plugin_script *scripts,
|
|
const char *name, int full);
|
|
extern void plugin_script_display_short_list (struct t_weechat_plugin *weechat_plugin,
|
|
struct t_plugin_script *scripts);
|
|
extern struct t_hdata *plugin_script_hdata_script (struct t_weechat_plugin *weechat_plugin,
|
|
struct t_plugin_script **scripts,
|
|
struct t_plugin_script **last_script,
|
|
const char *hdata_name);
|
|
extern int plugin_script_add_to_infolist (struct t_weechat_plugin *weechat_plugin,
|
|
struct t_infolist *infolist,
|
|
struct t_plugin_script *script);
|
|
extern struct t_infolist *plugin_script_infolist_list_scripts (struct t_weechat_plugin *weechat_plugin,
|
|
struct t_plugin_script *scripts,
|
|
void *pointer,
|
|
const char *arguments);
|
|
extern void plugin_script_end (struct t_weechat_plugin *weechat_plugin,
|
|
struct t_plugin_script_data *plugin_data);
|
|
extern void plugin_script_print_log (struct t_weechat_plugin *weechat_plugin,
|
|
struct t_plugin_script *scripts);
|
|
|
|
#endif /* WEECHAT_PLUGIN_PLUGIN_SCRIPT_H */
|