mirror of
https://gitea.tendokyu.moe/TeamTofuShop/taitools.git
synced 2026-09-22 22:28:06 +03:00
progress dump
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
#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;
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
#pragma once
|
||||
#include <windows.h>
|
||||
|
||||
const wchar_t* get_config_path();
|
||||
@@ -10,6 +10,8 @@ util_lib = static_library(
|
||||
'async.h',
|
||||
'crc.c',
|
||||
'crc.h',
|
||||
'env.c',
|
||||
'env.h',
|
||||
'dll-bind.c',
|
||||
'dll-bind.h',
|
||||
'dprintf.c',
|
||||
|
||||
Reference in New Issue
Block a user