forked from len0rd/rockbox
Made button_queue global
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1261 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2012e1ec28
commit
57a59e038b
2 changed files with 3 additions and 1 deletions
|
|
@ -28,7 +28,7 @@
|
|||
#include "kernel.h"
|
||||
#include "backlight.h"
|
||||
|
||||
static struct event_queue button_queue;
|
||||
struct event_queue button_queue;
|
||||
|
||||
#define POLL_FREQUENCY HZ/20
|
||||
#define REPEAT_START 6
|
||||
|
|
|
|||
|
|
@ -22,6 +22,8 @@
|
|||
#include <stdbool.h>
|
||||
#include "config.h"
|
||||
|
||||
extern struct event_queue button_queue;
|
||||
|
||||
void button_init (void);
|
||||
int button_get (bool block);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue