16 lines
290 B
C
16 lines
290 B
C
|
#pragma once
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
struct tekken_najv4_config {
|
||
|
uint8_t test;
|
||
|
uint8_t service;
|
||
|
uint8_t up;
|
||
|
uint8_t down;
|
||
|
uint8_t enter;
|
||
|
uint8_t coin;
|
||
|
};
|
||
|
|
||
|
void tekken_io_najv4_config_load(struct tekken_najv4_config *cfg, const wchar_t *filename);
|