Initial commit

This commit is contained in:
NOTPIES
2026-03-15 22:25:51 -03:00
commit c356c7b911
100 changed files with 8788 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#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();