forked from TeamTofuShop/segatools
carol: add touch dll functions
This commit is contained in:
@ -5,6 +5,8 @@
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
|
||||
typedef void (*carol_io_touch_callback_t)(const bool is_pressed, const uint32_t mouse_x, const uint32_t mouse_y);
|
||||
|
||||
/* Get the version of the Project carol IO API that this DLL supports. This
|
||||
function should return a positive 16-bit integer, where the high byte is
|
||||
the major version and the low byte is the minor version (as defined by the
|
||||
@ -51,4 +53,8 @@ HRESULT carol_io_touch_init();
|
||||
|
||||
HRESULT carol_io_ledbd_init();
|
||||
|
||||
HRESULT carol_io_controlbd_init();
|
||||
HRESULT carol_io_controlbd_init();
|
||||
|
||||
void carol_io_touch_start(carol_io_touch_callback_t callback);
|
||||
|
||||
void carol_io_touch_stop();
|
Reference in New Issue
Block a user