17 lines
310 B
C
17 lines
310 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;
|
||
|
} sysconfig_T;
|
||
|
|
||
|
void sysconfig_default_init();
|
||
|
|
||
|
extern sysconfig_T* g_sysconfig;
|
||
|
|
||
|
#endif //NOXOS_CONFIG_H
|