mirror of
https://gitea.tendokyu.moe/TeamTofuShop/taitools.git
synced 2026-09-27 01:00:00 +03:00
17 lines
282 B
C
17 lines
282 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "jvs/jvs-bus.h"
|
|
|
|
struct jvs_config {
|
|
bool enable;
|
|
uint16_t port;
|
|
};
|
|
|
|
typedef HRESULT (*jvs_provider_t)(struct jvs_node **root);
|
|
|
|
HRESULT jvs_hook_init(const struct jvs_config *cfg, jvs_provider_t provider);
|