aboutsummaryrefslogtreecommitdiff
path: root/frontend/plugin_lib.h
blob: f5c49851b79eb91c12114cf4cd3b06700575baaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
extern int keystate;
enum {
	DKEY_SELECT = 0,
	DKEY_L3,
	DKEY_R3,
	DKEY_START,
	DKEY_UP,
	DKEY_RIGHT,
	DKEY_DOWN,
	DKEY_LEFT,
	DKEY_L2,
	DKEY_R2,
	DKEY_L1,
	DKEY_R1,
	DKEY_TRIANGLE,
	DKEY_CIRCLE,
	DKEY_CROSS,
	DKEY_SQUARE,
};

extern void *pl_fbdev_buf;

int   pl_fbdev_open(void);
int   pl_fbdev_set_mode(int w, int h, int bpp);
void *pl_fbdev_flip(void);
void  pl_fbdev_close(void);

void pl_text_out16(int x, int y, const char *texto, ...);

struct rearmed_cbs {
	void  (*pl_get_layer_pos)(int *x, int *y, int *w, int *h);
	int   (*pl_fbdev_open)(void);
	int   (*pl_fbdev_set_mode)(int w, int h, int bpp);
	void *(*pl_fbdev_flip)(void);
	void  (*pl_fbdev_close)(void);
	int  *fskip_option;
};

extern const struct rearmed_cbs pl_rearmed_cbs;

#ifndef ARRAY_SIZE
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
#endif