blob: c03d04c24d5440aea349c1a29158f3766c2a05ae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef GUI_PRIVATE_H
#define GUI_PRIVATE_H
#include <gui.h>
#include <input.h>
#include <peripheral.h>
#include <camera.h>
#ifdef __cplusplus
extern "C"
{
#endif
void gui_coords(const struct gui_common *g, short *x, short *y);
bool gui_pressed(const struct gui_common *g, const struct input *in,
const union peripheral *p, const struct camera *cam, short w, short h);
bool gui_released(const struct gui_common *g, const union peripheral *p,
const struct camera *cam, short w, short h);
#ifdef __cplusplus
}
#endif
#endif /* GUI_PRIVATE_H */
|