Commit e3850bc9 authored by captainwong's avatar captainwong

add function get_exe_name

parent 150f984c
#pragma once #pragma once
#include <string>
#include <chrono> #include <chrono>
#include <mutex> #include <mutex>
#include "utf8.h" #include "utf8.h"
...@@ -128,4 +129,13 @@ public: \ ...@@ -128,4 +129,13 @@ public: \
#define INITIALIZE_STRING(val) { val = new wchar_t[1]; val[0] = 0; } #define INITIALIZE_STRING(val) { val = new wchar_t[1]; val[0] = 0; }
inline std::wstring get_exe_path()
{
wchar_t path[1024] = { 0 };
GetModuleFileName(nullptr, path, 1024);
std::wstring::size_type pos = std::wstring(path).find_last_of(L"\\/");
return std::wstring(path).substr(0, pos);
}
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment