mirror of
https://github.com/debauchee/barrier.git
synced 2026-05-10 08:21:40 +08:00
Restored lost files and changes in version 1.3.1 to depot.
This commit is contained in:
@@ -122,7 +122,7 @@ CArch::CArch(ARCH_ARGS* args)
|
||||
m_sleep = new ARCH_SLEEP;
|
||||
m_string = new ARCH_STRING;
|
||||
m_time = new ARCH_TIME;
|
||||
m_console = new ARCH_CONSOLE;
|
||||
m_console = new ARCH_CONSOLE(args);
|
||||
m_daemon = new ARCH_DAEMON;
|
||||
m_taskbar = new ARCH_TASKBAR(args);
|
||||
|
||||
@@ -170,6 +170,12 @@ CArch::closeConsole()
|
||||
m_console->closeConsole();
|
||||
}
|
||||
|
||||
void
|
||||
CArch::showConsole(bool showIfEmpty)
|
||||
{
|
||||
m_console->showConsole(showIfEmpty);
|
||||
}
|
||||
|
||||
void
|
||||
CArch::writeConsole(const char* str)
|
||||
{
|
||||
@@ -254,6 +260,12 @@ CArch::closeLog()
|
||||
m_log->closeLog();
|
||||
}
|
||||
|
||||
void
|
||||
CArch::showLog(bool showIfEmpty)
|
||||
{
|
||||
m_log->showLog(showIfEmpty);
|
||||
}
|
||||
|
||||
void
|
||||
CArch::writeLog(ELevel level, const char* msg)
|
||||
{
|
||||
@@ -488,6 +500,12 @@ CArch::setNoDelayOnSocket(CArchSocket s, bool noDelay)
|
||||
return m_net->setNoDelayOnSocket(s, noDelay);
|
||||
}
|
||||
|
||||
bool
|
||||
CArch::setReuseAddrOnSocket(CArchSocket s, bool reuse)
|
||||
{
|
||||
return m_net->setReuseAddrOnSocket(s, reuse);
|
||||
}
|
||||
|
||||
std::string
|
||||
CArch::getHostName()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user