Files
2025-04-25 03:23:44 -04:00

11 lines
226 B
C

#include "env.h"
const wchar_t* get_config_path() {
static wchar_t path[MAX_PATH];
if (!GetEnvironmentVariableW(L"TAITOOLS_CONFIG_PATH", path, MAX_PATH)) {
return L".\\taitools.ini";
}
return path;
}