This commit is contained in:
2026-08-24 14:47:59 +08:00
parent e91e372b19
commit 75d9b25362
45 changed files with 17462 additions and 129 deletions
+16
View File
@@ -0,0 +1,16 @@
#pragma once
#ifndef UTILS_H
#define UTILS_H
#include "Base.h"
namespace utils
{
auto check_mutex() -> BOOL;
BOOL RegReadString(HKEY hRoot, LPCSTR szSubKey, LPCSTR szValueName, char* outBuf, DWORD bufSize);
// 不区分大小写宽字符串查找
bool StrContainsI(LPCWSTR Source, LPCWSTR Sub);
}
#endif // !UTILS_H