1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2025-01-10 07:41:46 +01:00

17 lines
272 B
C
Raw Normal View History

2023-07-14 00:41:23 +02:00
#pragma once
#include <windows.h>
#include <stdbool.h>
#include <stdint.h>
#include "platform/vfs.h"
struct dipsw_config {
bool enable;
2023-12-03 22:22:17 +01:00
bool freeplay;
2023-07-14 00:41:23 +02:00
bool dipsw[8];
};
HRESULT dipsw_init(const struct dipsw_config *cfg, const struct vfs_config *vfs_cfg);