forked from len0rd/rockbox
Fix last reds, database tool definitely needs rework.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26072 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3763ace3ec
commit
06adb38326
3 changed files with 6 additions and 4 deletions
|
@ -27,6 +27,8 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
bool button_hold(void);
|
bool button_hold(void);
|
||||||
|
#undef button_init_device
|
||||||
void button_init_device(void);
|
void button_init_device(void);
|
||||||
|
int button_read_device(void);
|
||||||
|
|
||||||
#endif /* __BUTTON_SDL_H__ */
|
#endif /* __BUTTON_SDL_H__ */
|
||||||
|
|
|
@ -40,12 +40,12 @@ void mutex_unlock(struct mutex *m)
|
||||||
(void)m;
|
(void)m;
|
||||||
}
|
}
|
||||||
|
|
||||||
void thread_sdl_thread_lock(void *me)
|
void sim_thread_lock(void *me)
|
||||||
{
|
{
|
||||||
(void)me;
|
(void)me;
|
||||||
}
|
}
|
||||||
|
|
||||||
void * thread_sdl_thread_unlock(void)
|
void * sim_thread_unlock(void)
|
||||||
{
|
{
|
||||||
return (void*)1;
|
return (void*)1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,8 +32,8 @@ INCLUDES = -I$(ROOTDIR)/apps/gui \
|
||||||
-I$(APPSDIR) \
|
-I$(APPSDIR) \
|
||||||
-I$(BUILDDIR) \
|
-I$(BUILDDIR) \
|
||||||
|
|
||||||
SIMINCLUDES += -I$(ROOTDIR)/uisimulator/sdl -I$(ROOTDIR)/uisimulator/common \
|
SIMINCLUDES += -I$(FIRMDIR)/target/hosted/sdl -I$(FIRMDIR)/target/hosted \
|
||||||
-I$(FIRMDIR)/export $(TARGET_INC) -I$(BUILDDIR) -I$(APPSDIR)
|
-I$(ROOTDIR)/uisimulator/common -I$(FIRMDIR)/export -I$(BUILDDIR) -I$(APPSDIR)
|
||||||
|
|
||||||
# Makes mkdepfile happy
|
# Makes mkdepfile happy
|
||||||
GCCOPTS+=`$(SDLCONFIG) --cflags`
|
GCCOPTS+=`$(SDLCONFIG) --cflags`
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue