summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2007-10-02 09:08:08 +0000
committerNils Wallménius <nils@rockbox.org>2007-10-02 09:08:08 +0000
commit605949d48239551f721f5e8110d5f1001a2b2623 (patch)
treeb809945dea13749f8d1881ba50611f6dbfed71d8 /apps/plugin.h
parent6d0ee558e86beece998bfa032c06b091cf723355 (diff)
downloadrockbox-605949d48239551f721f5e8110d5f1001a2b2623.tar.gz
rockbox-605949d48239551f721f5e8110d5f1001a2b2623.zip
Hide symbols by default on 64 bit sim buildsto avoid clashing, fixes crashing on track change with the same codec, crashing in calculator and text display in midiplay
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14953 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 5f868e5654..5f98f951e6 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -655,7 +655,8 @@ extern unsigned char plugin_end_addr[];
655 plugin_start_addr, plugin_end_addr, plugin_start }; 655 plugin_start_addr, plugin_end_addr, plugin_start };
656#else /* SIMULATOR */ 656#else /* SIMULATOR */
657#define PLUGIN_HEADER \ 657#define PLUGIN_HEADER \
658 const struct plugin_header __header = { \ 658 const struct plugin_header __header \
659 __attribute__((visibility("default"))) = { \
659 PLUGIN_MAGIC, TARGET_ID, PLUGIN_API_VERSION, \ 660 PLUGIN_MAGIC, TARGET_ID, PLUGIN_API_VERSION, \
660 NULL, NULL, plugin_start }; 661 NULL, NULL, plugin_start };
661#endif /* SIMULATOR */ 662#endif /* SIMULATOR */