summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 81c069666a..440541d510 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * $Id$ 8 * $Id$
9 * 9 *
10 * Copyright (C) 2002 Björn Stenberg 10 * Copyright (C) 2002 Bj�rn Stenberg
11 * 11 *
12 * This program is free software; you can redistribute it and/or 12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License 13 * modify it under the terms of the GNU General Public License
@@ -132,7 +132,7 @@ void* plugin_get_buffer(size_t *buffer_size);
132#define PLUGIN_MAGIC 0x526F634B /* RocK */ 132#define PLUGIN_MAGIC 0x526F634B /* RocK */
133 133
134/* increase this every time the api struct changes */ 134/* increase this every time the api struct changes */
135#define PLUGIN_API_VERSION 131 135#define PLUGIN_API_VERSION 132
136 136
137/* update this to latest version if a change to the api struct breaks 137/* update this to latest version if a change to the api struct breaks
138 backwards compatibility (and please take the opportunity to sort in any 138 backwards compatibility (and please take the opportunity to sort in any
@@ -334,7 +334,7 @@ struct plugin_api {
334 void (*gui_synclist_del_item)(struct gui_synclist * lists); 334 void (*gui_synclist_del_item)(struct gui_synclist * lists);
335 void (*gui_synclist_limit_scroll)(struct gui_synclist * lists, bool scroll); 335 void (*gui_synclist_limit_scroll)(struct gui_synclist * lists, bool scroll);
336 bool (*gui_synclist_do_button)(struct gui_synclist * lists, 336 bool (*gui_synclist_do_button)(struct gui_synclist * lists,
337 unsigned *action, enum list_wrap wrap); 337 int *action, enum list_wrap wrap);
338 void (*gui_synclist_set_title)(struct gui_synclist *lists, char* title, int icon); 338 void (*gui_synclist_set_title)(struct gui_synclist *lists, char* title, int icon);
339 enum yesno_res (*gui_syncyesno_run)(const struct text_message * main_message, 339 enum yesno_res (*gui_syncyesno_run)(const struct text_message * main_message,
340 const struct text_message * yes_message, 340 const struct text_message * yes_message,
@@ -785,6 +785,7 @@ struct plugin_api {
785 const char *appsversion; 785 const char *appsversion;
786 /* new stuff at the end, sort into place next time 786 /* new stuff at the end, sort into place next time
787 the API gets incompatible */ 787 the API gets incompatible */
788 void (*viewportmanager_set_statusbar)(bool enabled);
788}; 789};
789 790
790/* plugin header */ 791/* plugin header */