mirror of
https://github.com/djhackersdev/bemanitools.git
synced 2026-08-09 03:43:56 -05:00
14 lines
332 B
C
14 lines
332 B
C
#ifndef ACIOTEST_ICCA_H
|
|
#define ACIOTEST_ICCA_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#include "aciodrv/device.h"
|
|
|
|
bool aciotest_icca_handler_init(
|
|
struct aciodrv_device_ctx *device, uint8_t node_id, void **ctx);
|
|
bool aciotest_icca_handler_update(
|
|
struct aciodrv_device_ctx *device, uint8_t node_id, void *ctx);
|
|
|
|
#endif |