mirror of
https://github.com/djhackersdev/bemanitools.git
synced 2026-09-15 11:55:10 -05:00
15 lines
312 B
C
15 lines
312 B
C
#ifndef ACIOTEST_HANDLER_H
|
|
#define ACIOTEST_HANDLER_H
|
|
|
|
static const uint8_t aciotest_handler_max = 16;
|
|
|
|
/**
|
|
* Handler interface for an ACIO device.
|
|
*/
|
|
struct aciotest_handler_node_handler {
|
|
void *ctx;
|
|
bool (*init)(uint8_t node_id, void **ctx);
|
|
bool (*update)(uint8_t node_id, void *ctx);
|
|
};
|
|
|
|
#endif |