R-PAGE
Resistance's Portable-Adventure-Game-Engine
io.h
Go to the documentation of this file.
1 /* Resistance's Portable-Adventure-Game-Engine (R-PAGE), Copyright (C) 2019 François Gutherz, Resistance.no
2  Released under MIT License, see license.txt for details.
3 */
4 
5 #ifdef LATTICE
6 #ifndef _IO_ROUTINES_
7 #define _IO_ROUTINES_
8 
9 #include <exec/types.h>
10 
11 #define PLATFORM_MOUSE_LEFT_BUTTON 1
12 #define PLATFORM_MOUSE_RIGHT_BUTTON (1 << 1)
13 
14 UBYTE Keyboard(void);
15 int file_get_size(char *filename);
16 void input_window_init(struct Window *window);
17 void input_update(short *button, short *x, short *y, unsigned short *rawkey);
18 
19 char *disk_get_logical_name(char *device_physical_name);
20 
21 #endif
22 #endif
unsigned char UBYTE
Definition: utils.h:20