mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LCEMP-Server.git
synced 2026-05-22 03:46:24 +00:00
13 lines
309 B
C++
13 lines
309 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
void ServerLog_Init();
|
|
void ServerLog_Close();
|
|
void ServerLog(const wchar_t* fmt, ...);
|
|
void ServerWarn(const wchar_t* fmt, ...);
|
|
void ServerLog_RegisterInput(std::wstring* buffer);
|
|
void ServerLog_UnregisterInput();
|
|
void ServerLog_LockOutput();
|
|
void ServerLog_UnlockOutput();
|