forked from osresearch/airbreak
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstubs.h
More file actions
21 lines (17 loc) · 669 Bytes
/
stubs.h
File metadata and controls
21 lines (17 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _stubs_h_
#define _stubs_h_
// Locations are defined in stubs.h, generated by ghidra2stubs
// draw something
extern void LCD_SetClipRectMax(void);
extern int GUI_SetColor(int color);
extern void GUI_DispStringAt(const char * s, int x, int y);
extern void LCD_DrawPixel(int x, int y);
extern const void * font_16;
extern void GUI_SetFont(const void * font);
extern void GUI_GotoXY(int x, int y);
extern void GUI_FillRect(int x, int y, int x1, int y1);
extern void LCD_FillRect(int x, int y, int x1, int y1);
extern int snprintf(char * buf, unsigned len, const char * fmt, ...);
extern unsigned char * gui_context;
extern unsigned tim_read_tim5(void);
#endif