Removed two dummy functions in plugin interface.

This commit is contained in:
Diogo Sousa
2013-07-09 22:04:07 +01:00
parent 798db7368a
commit 98aa62f637
2 changed files with 4 additions and 4 deletions

View File

@@ -144,10 +144,12 @@ struct _hexchat_plugin
int (*callback) (char *word[], hexchat_event_attrs *attrs,
void *user_data),
void *userdata);
void *(*hexchat_dummy4) (hexchat_plugin *ph);
void *(*hexchat_dummy3) (hexchat_plugin *ph);
/* If you add new functions here you should remove the corresponding number
* of dummy functions bellow. */
void *(*hexchat_dummy2) (hexchat_plugin *ph);
void *(*hexchat_dummy1) (hexchat_plugin *ph);
/* PRIVATE FIELDS! */
void *handle; /* from dlopen */
char *filename; /* loaded from */