summaryrefslogtreecommitdiff
path: root/apps/open_plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/open_plugin.h')
-rw-r--r--apps/open_plugin.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/apps/open_plugin.h b/apps/open_plugin.h
index 8c09c4ac58..e1d49bf329 100644
--- a/apps/open_plugin.h
+++ b/apps/open_plugin.h
@@ -32,17 +32,28 @@
32#ifndef __PCTOOL__ 32#ifndef __PCTOOL__
33/* open_plugin path lookup */ 33/* open_plugin path lookup */
34#define OPEN_PLUGIN_DAT PLUGIN_DIR "/plugin.dat" 34#define OPEN_PLUGIN_DAT PLUGIN_DIR "/plugin.dat"
35#define OPEN_RBPLUGIN_DAT PLUGIN_DIR "/rb_plugins.dat"
35#define OPEN_PLUGIN_BUFSZ MAX_PATH 36#define OPEN_PLUGIN_BUFSZ MAX_PATH
36#define OPEN_PLUGIN_NAMESZ 32 37#define OPEN_PLUGIN_NAMESZ 32
38
39enum {
40 OPEN_PLUGIN_LANG_INVALID = (-1),
41 OPEN_PLUGIN_LANG_IGNORE = (-2),
42 OPEN_PLUGIN_LANG_IGNOREALL = (-3),
43 OPEN_PLUGIN_NOT_FOUND = (-1),
44 OPEN_PLUGIN_NEEDS_FLUSHED = (-2)
45};
46
37struct open_plugin_entry_t 47struct open_plugin_entry_t
38{ 48{
49/* hash and lang_id need to be the first items */
39 uint32_t hash; 50 uint32_t hash;
40 int32_t lang_id; 51 int32_t lang_id;
41 char name[OPEN_PLUGIN_NAMESZ+1]; 52 char name[OPEN_PLUGIN_NAMESZ+1];
42 /*char key[OPEN_PLUGIN_BUFSZ+1];*/ 53 /*char key[OPEN_PLUGIN_BUFSZ+1];*/
43 char path[OPEN_PLUGIN_BUFSZ+1]; 54 char path[OPEN_PLUGIN_BUFSZ+1];
44 char param[OPEN_PLUGIN_BUFSZ+1]; 55 char param[OPEN_PLUGIN_BUFSZ+1];
45}; 56}__attribute__((packed));
46 57
47inline static void open_plugin_get_hash(const char *key, uint32_t *hash) 58inline static void open_plugin_get_hash(const char *key, uint32_t *hash)
48{ 59{