diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-08-05 12:14:07 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-08-05 12:14:07 +0000 |
| commit | ef815729b6c2732a4ccc530402c4336a5a3e83b9 (patch) | |
| tree | 399f3aec796764ae8fcf4bae3c6573e510becb82 /apps/plugin.h | |
| parent | f8c6801fdd74b0d2a8d6143c455b61e33306a794 (diff) | |
| download | rockbox-ef815729b6c2732a4ccc530402c4336a5a3e83b9.zip rockbox-ef815729b6c2732a4ccc530402c4336a5a3e83b9.tar.gz rockbox-ef815729b6c2732a4ccc530402c4336a5a3e83b9.tar.bz2 rockbox-ef815729b6c2732a4ccc530402c4336a5a3e83b9.tar.xz | |
Accept FS#7486 - shortcuts plugin.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14191 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 61cfe96..c3febf3 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -112,7 +112,7 @@ #define PLUGIN_MAGIC 0x526F634B /* RocK */ /* increase this every time the api struct changes */ -#define PLUGIN_API_VERSION 69 +#define PLUGIN_API_VERSION 70 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any @@ -620,6 +620,8 @@ struct plugin_api { int width, int height); #endif void (*led)(bool on); + void (*set_current_file)(char* path); + void (*set_dirfilter)(int l_dirfilter); }; /* plugin header */ |