forked from Dniel97/segatools
13 lines
227 B
C
13 lines
227 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
struct unity_config {
|
||
|
bool enable;
|
||
|
wchar_t target_assembly[MAX_PATH];
|
||
|
};
|
||
|
|
||
|
void unity_config_load(struct unity_config *cfg, const wchar_t *filename);
|