summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorDan Everton <dan@iocaine.org>2006-08-08 10:46:39 +0000
committerDan Everton <dan@iocaine.org>2006-08-08 10:46:39 +0000
commit5814551865df5cfb172f1e401c6807b463766bf8 (patch)
tree638288d6922df180eba0c4abe7285041b9c21e67 /apps/plugin.h
parente7aeebf0bfe5f673818f30757b23fea7b8436b81 (diff)
downloadrockbox-5814551865df5cfb172f1e401c6807b463766bf8.tar.gz
rockbox-5814551865df5cfb172f1e401c6807b463766bf8.zip
Add disktidy plugin (FS#2596).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10482 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 69fbea9a22..b764d860c3 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -104,7 +104,7 @@
104#define PLUGIN_MAGIC 0x526F634B /* RocK */ 104#define PLUGIN_MAGIC 0x526F634B /* RocK */
105 105
106/* increase this every time the api struct changes */ 106/* increase this every time the api struct changes */
107#define PLUGIN_API_VERSION 26 107#define PLUGIN_API_VERSION 27
108 108
109/* update this to latest version if a change to the api struct breaks 109/* update this to latest version if a change to the api struct breaks
110 backwards compatibility (and please take the opportunity to sort in any 110 backwards compatibility (and please take the opportunity to sort in any
@@ -546,6 +546,7 @@ struct plugin_api {
546 int x, int y, int width, int height); 546 int x, int y, int width, int height);
547#endif 547#endif
548 548
549 int (*PREFIX(rmdir))(const char *name);
549}; 550};
550 551
551/* plugin header */ 552/* plugin header */