18 lines
329 B
C
18 lines
329 B
C
// This file is part of noxos and licensed under the MIT open source license
|
|
|
|
#ifndef NOXOS_CONFIG_H
|
|
#define NOXOS_CONFIG_H
|
|
|
|
#include "utils/stdtypes.h"
|
|
|
|
typedef struct {
|
|
bool ps2_acpi_validation;
|
|
bool log_graphical;
|
|
} sysconfig_T;
|
|
|
|
void sysconfig_init();
|
|
|
|
extern sysconfig_T* g_sysconfig;
|
|
|
|
#endif //NOXOS_CONFIG_H
|