summary refs log tree commit diff stats
path: root/src/common/plugin.c
diff options
context:
space:
mode:
authorDiogo Sousa <diogogsousa@gmail.com>2013-07-12 22:15:17 +0100
committerDiogo Sousa <diogogsousa@gmail.com>2013-07-12 22:46:04 +0100
commit18eaccb8405076b9de0f83f38d44c610528c1a63 (patch)
treec59f4d7bf4895e63d081a72135c82e6345a01406 /src/common/plugin.c
parente0fb3d537d86001a8ccc5cc1c90a0ecc4f6a8d92 (diff)
Added functions to create/destroy event_attrs to plugin interface.
Function names were chosen to keep consistency with the rest of the
API.
Diffstat (limited to 'src/common/plugin.c')
-rw-r--r--src/common/plugin.c27
1 files changed, 23 insertions, 4 deletions
diff --git a/src/common/plugin.c b/src/common/plugin.c
index 8fd6805b..6edc9926 100644
--- a/src/common/plugin.c
+++ b/src/common/plugin.c
@@ -296,9 +296,8 @@ plugin_add (session *sess, char *filename, void *handle, void *init_func,
 		pl->hexchat_hook_server_attrs = hexchat_hook_server_attrs;
 		pl->hexchat_hook_print_attrs = hexchat_hook_print_attrs;
 		pl->hexchat_emit_print_attrs = hexchat_emit_print_attrs;
-
-		/* incase new plugins are loaded on older HexChat */
-		pl->hexchat_dummy1 = hexchat_dummy;
+		pl->hexchat_event_attrs_create = hexchat_event_attrs_create;
+		pl->hexchat_event_attrs_free = hexchat_event_attrs_free;
 
 		/* run hexchat_plugin_init, if it returns 0, close the plugin */
 		if (((hexchat_init_func *)init_func) (pl, &pl->name, &pl->desc, &pl->version, arg) == 0)
@@ -620,8 +619,28 @@ plugin_emit_command (session *sess, char *name, char *word[], char *word_eol[])
 	return plugin_hook_run (sess, name, word, word_eol, NULL, HOOK_COMMAND);
 }
 
-/* got a server PRIVMSG, NOTICE, numeric etc... */
+hexchat_event_attrs *
+hexchat_event_attrs_create (hexchat_plugin *ph)
+{
+	hexchat_event_attrs *attrs;
+
+	attrs = malloc (sizeof (*attrs));
+
+	if (attrs == NULL)
+		return NULL;
+
+	attrs->server_time_utc = (time_t) 0;
 
+	return attrs;
+}
+
+void
+hexchat_event_attrs_free (hexchat_plugin *ph, hexchat_event_attrs *attrs)
+{
+	g_free (attrs);
+}
+
+/* got a server PRIVMSG, NOTICE, numeric etc... */
 int
 plugin_emit_server (session *sess, char *name, char *word[], char *word_eol[])
 {