code police : fix some multiply defined variables
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18830 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
695c39bc9c
commit
ae7391b187
10 changed files with 10 additions and 10 deletions
|
@ -64,7 +64,7 @@
|
|||
#define taxicab(a,b) (abs(column[a]-column[b]) + abs(row[a]-row[b]))
|
||||
|
||||
/* ---- RockBox datatypes and variables */
|
||||
const struct plugin_api* rb;
|
||||
extern const struct plugin_api* rb;
|
||||
|
||||
/* ---- Chess datatypes and variables ---- */
|
||||
struct leaf
|
||||
|
|
|
@ -108,7 +108,7 @@ int consoleplayer; // player taking events and displaying
|
|||
int displayplayer; // view being displayed
|
||||
int gametic;
|
||||
int levelstarttic; // gametic at level start
|
||||
int basetic; /* killough 9/29/98: for demo sync */
|
||||
extern int basetic; /* killough 9/29/98: for demo sync */
|
||||
int totalkills, totallive, totalitems, totalsecret; // for intermission
|
||||
boolean demorecording;
|
||||
boolean demoplayback;
|
||||
|
|
|
@ -101,7 +101,7 @@ int my_close(int id)
|
|||
return 0;
|
||||
}
|
||||
#endif
|
||||
const struct plugin_api* rb;
|
||||
extern const struct plugin_api* rb;
|
||||
#define MAXARGVS 100
|
||||
|
||||
bool noprintf=0; // Variable disables printf lcd updates to protect grayscale lib/direct lcd updates
|
||||
|
|
|
@ -268,7 +268,7 @@ PLUGIN_IRAM_DECLARE
|
|||
#endif
|
||||
#endif
|
||||
|
||||
const struct plugin_api* rb;
|
||||
extern const struct plugin_api* rb;
|
||||
|
||||
CACHE_FUNCTION_WRAPPERS(rb);
|
||||
ALIGN_BUFFER_WRAPPER(rb);
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
PLUGIN_HEADER
|
||||
PLUGIN_IRAM_DECLARE
|
||||
|
||||
const struct plugin_api* rb;
|
||||
extern const struct plugin_api* rb;
|
||||
|
||||
struct pacman_settings {
|
||||
int difficulty;
|
||||
|
|
|
@ -32,7 +32,7 @@ PLUGIN_IRAM_DECLARE
|
|||
/* here is a global api struct pointer. while not strictly necessary,
|
||||
it's nice not to have to pass the api pointer in all function calls
|
||||
in the plugin */
|
||||
const struct plugin_api* rb;
|
||||
bool plugbuf;
|
||||
int shut,cleanshut;
|
||||
char *errormsg;
|
||||
|
||||
|
|
|
@ -109,7 +109,7 @@ struct options {
|
|||
int dirty;
|
||||
};
|
||||
|
||||
bool plugbuf;
|
||||
extern bool plugbuf;
|
||||
|
||||
extern struct options options;
|
||||
#define savedir ROCKBOX_DIR "/rockboy"
|
||||
|
|
|
@ -82,7 +82,7 @@ PLUGIN_HEADER
|
|||
it's nice not to have to pass the api pointer in all function calls
|
||||
in the plugin */
|
||||
|
||||
const struct plugin_api* rb;
|
||||
extern const struct plugin_api* rb;
|
||||
|
||||
/* Default game - used to initialise sudoku.ss if it doesn't exist. */
|
||||
static const char default_game[9][9] =
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
PLUGIN_HEADER
|
||||
PLUGIN_IRAM_DECLARE
|
||||
|
||||
const struct plugin_api* rb;
|
||||
extern const struct plugin_api* rb;
|
||||
|
||||
#include "spkey_p.h"
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ struct tea5767_region_data
|
|||
unsigned char band; /* 0: europe, 1: japan (BL in TEA spec)*/
|
||||
} __attribute__((packed));
|
||||
|
||||
const struct tea5767_region_data tea5767_region_data[TUNER_NUM_REGIONS];
|
||||
extern const struct tea5767_region_data tea5767_region_data[TUNER_NUM_REGIONS];
|
||||
|
||||
struct tea5767_dbg_info
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue