1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-10 04:05:41 +02:00

Use of only one pointer to value for plugin list variables

This commit is contained in:
Sebastien Helleu
2007-11-28 17:49:36 +01:00
parent b4bd4876fd
commit 288034f83f
2 changed files with 33 additions and 28 deletions
File diff suppressed because it is too large Load Diff
+1 -4
View File
@@ -34,10 +34,7 @@ struct t_plugin_list_var
{
char *name; /* variable name */
enum t_plugin_var_type type; /* type: integer, string, time */
int value_int; /* integer value */
char *value_string; /* string value */
void *value_pointer; /* pointer value */
time_t value_time; /* time value */
void *value; /* pointer to value */
struct t_plugin_list_var *prev_var; /* link to previous variable */
struct t_plugin_list_var *next_var; /* link to next variable */
};