2019-08-30 22:49:11 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
enum {
|
|
|
|
/* System buttons in button[0] */
|
|
|
|
|
|
|
|
IO4_BUTTON_TEST = 1 << 9,
|
|
|
|
IO4_BUTTON_SERVICE = 1 << 6,
|
|
|
|
};
|
|
|
|
|
2020-10-07 17:26:12 +00:00
|
|
|
struct io4_config {
|
|
|
|
bool enable;
|
|
|
|
};
|
|
|
|
|
2019-08-30 22:49:11 +00:00
|
|
|
struct io4_state {
|
|
|
|
uint16_t adcs[8];
|
|
|
|
uint16_t spinners[4];
|
|
|
|
uint16_t chutes[2];
|
|
|
|
uint16_t buttons[2];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct io4_ops {
|
|
|
|
HRESULT (*poll)(void *ctx, struct io4_state *state);
|
|
|
|
};
|
|
|
|
|
2020-10-07 17:26:12 +00:00
|
|
|
HRESULT io4_hook_init(
|
|
|
|
const struct io4_config *cfg,
|
|
|
|
const struct io4_ops *ops,
|
|
|
|
void *ctx);
|