summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/chessbox/gnuchess.c2
-rw-r--r--apps/plugins/doom/rockdoom.c2
-rw-r--r--apps/plugins/mpegplayer/mpegplayer.c2
-rw-r--r--apps/plugins/pacbox/pacbox.c2
-rw-r--r--apps/plugins/rockboy/rockboy.c2
-rw-r--r--apps/plugins/rockboy/rockmacros.h2
-rw-r--r--apps/plugins/sudoku/sudoku.c2
-rw-r--r--apps/plugins/zxbox/zxbox.c2
8 files changed, 8 insertions, 8 deletions
diff --git a/apps/plugins/chessbox/gnuchess.c b/apps/plugins/chessbox/gnuchess.c
index b164e1f83f..51e200d0f2 100644
--- a/apps/plugins/chessbox/gnuchess.c
+++ b/apps/plugins/chessbox/gnuchess.c
@@ -64,7 +64,7 @@
64#define taxicab(a,b) (abs(column[a]-column[b]) + abs(row[a]-row[b])) 64#define taxicab(a,b) (abs(column[a]-column[b]) + abs(row[a]-row[b]))
65 65
66/* ---- RockBox datatypes and variables */ 66/* ---- RockBox datatypes and variables */
67extern const struct plugin_api* rb; 67const struct plugin_api* rb;
68 68
69/* ---- Chess datatypes and variables ---- */ 69/* ---- Chess datatypes and variables ---- */
70struct leaf 70struct leaf
diff --git a/apps/plugins/doom/rockdoom.c b/apps/plugins/doom/rockdoom.c
index eb5006494f..763e9d5681 100644
--- a/apps/plugins/doom/rockdoom.c
+++ b/apps/plugins/doom/rockdoom.c
@@ -101,7 +101,7 @@ int my_close(int id)
101 return 0; 101 return 0;
102} 102}
103#endif 103#endif
104extern const struct plugin_api* rb; 104const struct plugin_api* rb;
105#define MAXARGVS 100 105#define MAXARGVS 100
106 106
107bool noprintf=0; // Variable disables printf lcd updates to protect grayscale lib/direct lcd updates 107bool noprintf=0; // Variable disables printf lcd updates to protect grayscale lib/direct lcd updates
diff --git a/apps/plugins/mpegplayer/mpegplayer.c b/apps/plugins/mpegplayer/mpegplayer.c
index 596bbf6817..cb8c0d2133 100644
--- a/apps/plugins/mpegplayer/mpegplayer.c
+++ b/apps/plugins/mpegplayer/mpegplayer.c
@@ -268,7 +268,7 @@ PLUGIN_IRAM_DECLARE
268#endif 268#endif
269#endif 269#endif
270 270
271extern const struct plugin_api* rb; 271const struct plugin_api* rb;
272 272
273CACHE_FUNCTION_WRAPPERS(rb); 273CACHE_FUNCTION_WRAPPERS(rb);
274ALIGN_BUFFER_WRAPPER(rb); 274ALIGN_BUFFER_WRAPPER(rb);
diff --git a/apps/plugins/pacbox/pacbox.c b/apps/plugins/pacbox/pacbox.c
index e5d3c225ce..c4ee037b5a 100644
--- a/apps/plugins/pacbox/pacbox.c
+++ b/apps/plugins/pacbox/pacbox.c
@@ -34,7 +34,7 @@
34PLUGIN_HEADER 34PLUGIN_HEADER
35PLUGIN_IRAM_DECLARE 35PLUGIN_IRAM_DECLARE
36 36
37extern const struct plugin_api* rb; 37const struct plugin_api* rb;
38 38
39struct pacman_settings { 39struct pacman_settings {
40 int difficulty; 40 int difficulty;
diff --git a/apps/plugins/rockboy/rockboy.c b/apps/plugins/rockboy/rockboy.c
index 57dbd21590..1addef2e44 100644
--- a/apps/plugins/rockboy/rockboy.c
+++ b/apps/plugins/rockboy/rockboy.c
@@ -32,7 +32,7 @@ PLUGIN_IRAM_DECLARE
32/* here is a global api struct pointer. while not strictly necessary, 32/* here is a global api struct pointer. while not strictly necessary,
33 it's nice not to have to pass the api pointer in all function calls 33 it's nice not to have to pass the api pointer in all function calls
34 in the plugin */ 34 in the plugin */
35bool plugbuf; 35const struct plugin_api* rb;
36int shut,cleanshut; 36int shut,cleanshut;
37char *errormsg; 37char *errormsg;
38 38
diff --git a/apps/plugins/rockboy/rockmacros.h b/apps/plugins/rockboy/rockmacros.h
index b60f1e9763..179de2313f 100644
--- a/apps/plugins/rockboy/rockmacros.h
+++ b/apps/plugins/rockboy/rockmacros.h
@@ -109,7 +109,7 @@ struct options {
109 int dirty; 109 int dirty;
110}; 110};
111 111
112extern bool plugbuf; 112bool plugbuf;
113 113
114extern struct options options; 114extern struct options options;
115#define savedir ROCKBOX_DIR "/rockboy" 115#define savedir ROCKBOX_DIR "/rockboy"
diff --git a/apps/plugins/sudoku/sudoku.c b/apps/plugins/sudoku/sudoku.c
index 9a6def229c..3910e14011 100644
--- a/apps/plugins/sudoku/sudoku.c
+++ b/apps/plugins/sudoku/sudoku.c
@@ -82,7 +82,7 @@ PLUGIN_HEADER
82 it's nice not to have to pass the api pointer in all function calls 82 it's nice not to have to pass the api pointer in all function calls
83 in the plugin */ 83 in the plugin */
84 84
85extern const struct plugin_api* rb; 85const struct plugin_api* rb;
86 86
87/* Default game - used to initialise sudoku.ss if it doesn't exist. */ 87/* Default game - used to initialise sudoku.ss if it doesn't exist. */
88static const char default_game[9][9] = 88static const char default_game[9][9] =
diff --git a/apps/plugins/zxbox/zxbox.c b/apps/plugins/zxbox/zxbox.c
index 3d268dbb1f..fbb61c1352 100644
--- a/apps/plugins/zxbox/zxbox.c
+++ b/apps/plugins/zxbox/zxbox.c
@@ -24,7 +24,7 @@
24PLUGIN_HEADER 24PLUGIN_HEADER
25PLUGIN_IRAM_DECLARE 25PLUGIN_IRAM_DECLARE
26 26
27extern const struct plugin_api* rb; 27const struct plugin_api* rb;
28 28
29#include "spkey_p.h" 29#include "spkey_p.h"
30 30