progress dump

This commit is contained in:
Hay1tsme
2025-04-25 03:23:44 -04:00
parent 571534943e
commit 1a47c7d330
43 changed files with 4584 additions and 719 deletions
+10
View File
@@ -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;
}
+4
View File
@@ -0,0 +1,4 @@
#pragma once
#include <windows.h>
const wchar_t* get_config_path();
+2
View File
@@ -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',