Preparations for the release of the 64-bit version.

This commit is contained in:
2023-12-03 20:23:51 +03:00
parent 8c570ab1e9
commit f558df6bf9
4 changed files with 28 additions and 1 deletions

View File

@@ -12,6 +12,8 @@ public:
void Out(const wchar_t*, ...);
CLogger(const wchar_t*);
CLogger(const wchar_t*, const wchar_t*);
CLogger(const wchar_t*, const uint8_t);
CLogger(const wchar_t*, const wchar_t*, const uint8_t);
~CLogger();
private:
@@ -24,6 +26,7 @@ private:
std::wofstream fsLogFile;
std::wstring szAppTitle{ 0 };
std::wstring szAppVersion{ 0 };
std::wstring szAppPlatform{ 0 };
std::wstring szAppTitleVer{ 0 };
inline wchar_t* GetTimeStamp();