forked from len0rd/rockbox
Accept FS#7264 'Build with -Os switch for coldfire targets'.
Introduces MEM_FUNCTION_WRAPPERS(api) macro which adds wrappers functions to a plugin to make plugins link correctly when gcc calls mem* functions directly. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13625 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
f50bd1151a
commit
c7f9ca4067
21 changed files with 105 additions and 29 deletions
|
@ -30,6 +30,7 @@
|
|||
#include "errno.h"
|
||||
#include "lib/bmp.h"
|
||||
#include "lib/rgb_hsv.h"
|
||||
#include "mem_function_wrappers.h"
|
||||
|
||||
PLUGIN_HEADER
|
||||
|
||||
|
@ -224,6 +225,8 @@ int errno;
|
|||
|
||||
static struct plugin_api* rb;
|
||||
|
||||
MEM_FUNCTION_WRAPPERS(rb);
|
||||
|
||||
static int drawcolor=0; /* Current color (in palette) */
|
||||
static int bgdrawcolor=9; /* Current background color (in palette) */
|
||||
bool isbg = false; /* gruik ugly hack alert */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue