Use already set unicode exe name in separate process
This commit is contained in:
parent
35c70a16b5
commit
08d686f156
@ -17,6 +17,7 @@
|
|||||||
|
|
||||||
#include "utils/separate_process.hpp"
|
#include "utils/separate_process.hpp"
|
||||||
#include "io/file_manager.hpp"
|
#include "io/file_manager.hpp"
|
||||||
|
#include "utils/command_line.hpp"
|
||||||
#include "utils/log.hpp"
|
#include "utils/log.hpp"
|
||||||
#include "utils/string_utils.hpp"
|
#include "utils/string_utils.hpp"
|
||||||
|
|
||||||
@ -50,11 +51,8 @@
|
|||||||
std::string SeparateProcess::getCurrentExecutableLocation()
|
std::string SeparateProcess::getCurrentExecutableLocation()
|
||||||
{
|
{
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
HMODULE moudle = GetModuleHandle(NULL);
|
// We already set the full path of exe name in windows
|
||||||
char path[1024];
|
return CommandLine::getExecName();
|
||||||
if (GetModuleFileNameA(moudle, path, 1024) < 1024)
|
|
||||||
return file_manager->getFileSystem()->getAbsolutePath(path).c_str();
|
|
||||||
return "";
|
|
||||||
#elif defined (__APPLE__)
|
#elif defined (__APPLE__)
|
||||||
char path[1024];
|
char path[1024];
|
||||||
unsigned buf_size = 1024;
|
unsigned buf_size = 1024;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user