mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-13 16:08:50 +01:00
60 lines
1.4 KiB
C++
60 lines
1.4 KiB
C++
#include "util_env.h"
|
|
|
|
#include "./com/com_include.h"
|
|
|
|
namespace dxvk::env {
|
|
|
|
std::string getEnvVar(const char* name) {
|
|
std::vector<WCHAR> result;
|
|
result.resize(MAX_PATH + 1);
|
|
|
|
DWORD len = ::GetEnvironmentVariableW(str::tows(name).c_str(), result.data(), MAX_PATH);
|
|
result.resize(len);
|
|
|
|
return str::fromws(result.data());
|
|
}
|
|
|
|
|
|
std::string getExeName() {
|
|
std::string fullPath = getExePath();
|
|
auto n = fullPath.find_last_of('\\');
|
|
|
|
return (n != std::string::npos)
|
|
? fullPath.substr(n + 1)
|
|
: fullPath;
|
|
}
|
|
|
|
|
|
std::string getExePath() {
|
|
std::vector<WCHAR> exePath;
|
|
exePath.resize(MAX_PATH + 1);
|
|
|
|
DWORD len = ::GetModuleFileNameW(NULL, exePath.data(), MAX_PATH);
|
|
exePath.resize(len);
|
|
|
|
return str::fromws(exePath.data());
|
|
}
|
|
|
|
|
|
void setThreadName(const std::string& name) {
|
|
using SetThreadDescriptionProc = HRESULT (WINAPI *) (HANDLE, PCWSTR);
|
|
|
|
static auto proc = reinterpret_cast<SetThreadDescriptionProc>(
|
|
::GetProcAddress(::GetModuleHandleW(L"kernel32.dll"), "SetThreadDescription"));
|
|
|
|
if (proc != nullptr) {
|
|
auto wideName = std::vector<WCHAR>(name.length() + 1);
|
|
str::tows(name.c_str(), wideName.data(), wideName.size());
|
|
(*proc)(::GetCurrentThread(), wideName.data());
|
|
}
|
|
}
|
|
|
|
|
|
bool createDirectory(const std::string& path) {
|
|
WCHAR widePath[MAX_PATH];
|
|
str::tows(path.c_str(), widePath);
|
|
return !!CreateDirectoryW(widePath, nullptr);
|
|
}
|
|
|
|
}
|