Application Galore

This commit is contained in:
VerstreuteSeele
2022-12-20 06:28:52 +01:00
parent 3ba146dab8
commit c02ce79f8c
210 changed files with 45743 additions and 114 deletions

View File

@@ -0,0 +1,21 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef bool (*MouseMoveCallback)(int8_t x, int8_t y, void* context);
void calibration_begin();
bool calibration_step();
void calibration_end();
void tracking_begin();
void tracking_step(MouseMoveCallback mouse_move, void* context);
void tracking_end();
#ifdef __cplusplus
}
#endif