r5sdk/r5dev/core/r5dev.h
Amos b9af86b9c1 Implement terminal utilities for Windows console + add new colors for various output variations
* Add new SDK launch logo.
* Remove ansi-color coding from in-game console and file loggers.
* Improve console colors for Windows.
* Implement various string utilities.
* Implement various terminal utilities.
2022-01-16 01:33:07 +01:00

22 lines
666 B
C++

#pragma once
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
// Windows Header Files
#include <windows.h>
__declspec(dllexport) void DummyExport()
{
// Required for detours.
}
const std::string R5R_LOGO[] =
{
R"(+---------------------------------------------+)",
R"(| ___ ___ ___ _ _ _ |)",
R"(| | _ \ __| _ \___| |___ __ _ __| |___ __| | |)",
R"(| | /__ \ / -_) / _ \/ _` / _` / -_) _` | |)",
R"(| |_|_\___/_|_\___|_\___/\__,_\__,_\___\__,_| |)",
R"(| |)",
R"(+---------------------------------------------+)"
};