forked from Hay1tsme/segatools
20 lines
579 B
C
20 lines
579 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
/* THIS API IS UNSTABLE. Please do not build alternative implementations of
|
|
this DLL just yet unless you are prepared to deal with API breakages. */
|
|
|
|
HRESULT aime_io_init(void);
|
|
void aime_io_fini(void);
|
|
HRESULT aime_io_nfc_poll(uint8_t unit_no);
|
|
HRESULT aime_io_nfc_get_aime_id(
|
|
uint8_t unit_no,
|
|
uint8_t *luid,
|
|
size_t luid_size);
|
|
HRESULT aime_io_nfc_get_felica_id(uint8_t unit_no, uint64_t *IDm);
|
|
void aime_io_led_set_color(uint8_t unit_no, uint8_t r, uint8_t g, uint8_t b);
|