1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2024-11-11 23:17:08 +01:00
segatools-dniel97/platform/system.h
2024-08-20 10:48:08 +02:00

17 lines
275 B
C

#pragma once
#include <windows.h>
#include <stdbool.h>
#include <stdint.h>
#include "platform/vfs.h"
struct system_config {
bool enable;
bool freeplay;
bool dipsw[8];
};
HRESULT system_init(const struct system_config *cfg, const struct vfs_config *vfs_cfg);