mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.1 KiB
54 lines
1.1 KiB
#include "Config.h" |
|
#include "Daemon.h" |
|
#include "util.h" |
|
#include "Log.h" |
|
|
|
#ifdef _WIN32 |
|
|
|
#include "Win32/Win32App.h" |
|
|
|
namespace i2p |
|
{ |
|
namespace util |
|
{ |
|
bool DaemonWin32::init(int argc, char* argv[]) |
|
{ |
|
setlocale(LC_CTYPE, ""); |
|
SetConsoleCP(1251); |
|
SetConsoleOutputCP(1251); |
|
setlocale(LC_ALL, "Russian"); |
|
return Daemon_Singleton::init(argc, argv); |
|
} |
|
|
|
bool DaemonWin32::start() |
|
{ |
|
setlocale(LC_CTYPE, ""); |
|
SetConsoleCP(1251); |
|
SetConsoleOutputCP(1251); |
|
setlocale(LC_ALL, "Russian"); |
|
if (!i2p::win32::StartWin32App ()) return false; |
|
|
|
bool ret = Daemon_Singleton::start(); |
|
if (ret && IsLogToFile ()) |
|
{ |
|
// TODO: find out where this garbage to console comes from |
|
SetStdHandle(STD_OUTPUT_HANDLE, INVALID_HANDLE_VALUE); |
|
SetStdHandle(STD_ERROR_HANDLE, INVALID_HANDLE_VALUE); |
|
} |
|
return ret; |
|
} |
|
|
|
bool DaemonWin32::stop() |
|
{ |
|
i2p::win32::StopWin32App (); |
|
return Daemon_Singleton::stop(); |
|
} |
|
|
|
void DaemonWin32::run () |
|
{ |
|
i2p::win32::RunWin32App (); |
|
} |
|
} |
|
} |
|
|
|
#endif
|
|
|