mirror of
https://gitea.tendokyu.moe/TeamTofuShop/taitools.git
synced 2026-09-22 22:28:06 +03:00
28 lines
505 B
C
28 lines
505 B
C
#include <windows.h>
|
|
#include <assert.h>
|
|
|
|
#include "jvs/jvs-bus.h"
|
|
#include "idmac/jvs.h"
|
|
#include "board/k92x0249.h"
|
|
|
|
#include "sivahook/reader.h"
|
|
#include "sivahook/siva-dll.h"
|
|
|
|
#include "util/dprintf.h"
|
|
|
|
static struct k92x0249 siva_jvs_reader;
|
|
|
|
HRESULT siva_reader_init(struct jvs_node **out)
|
|
{
|
|
HRESULT hr;
|
|
|
|
assert(out != NULL);
|
|
|
|
dprintf("Siva Nesica Reader: Init\n");
|
|
|
|
k92x0249_init(&siva_jvs_reader, NULL, NULL);
|
|
*out = k92x0249_to_jvs_node(&siva_jvs_reader);
|
|
|
|
return S_OK;
|
|
}
|