mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-11-14 08:07:37 +01:00
25 lines
498 B
C
25 lines
498 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <stddef.h>
|
||
|
|
||
|
#include "hook/iobuf.h"
|
||
|
|
||
|
struct jvs_node {
|
||
|
struct jvs_node *next;
|
||
|
void (*transact)(
|
||
|
struct jvs_node *node,
|
||
|
const void *bytes,
|
||
|
size_t nbytes,
|
||
|
struct iobuf *resp);
|
||
|
bool (*sense)(struct jvs_node *node);
|
||
|
};
|
||
|
|
||
|
void jvs_bus_transact(
|
||
|
struct jvs_node *head,
|
||
|
const void *bytes,
|
||
|
size_t nbytes,
|
||
|
struct iobuf *resp);
|
||
|
|
||
|
bool jvs_node_sense(struct jvs_node *node);
|