r5sdk/r5dev/core/r5dev.h

22 lines
820 B
C
Raw Normal View History

2021-04-13 04:45:22 -07:00
#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[] =
{
2022-02-19 14:02:46 +01:00
R"(+-------------------------------------------------------------------+)",
2022-02-24 16:46:38 +01:00
R"(| ___ ___ ___ _ _ _ ___ __ ____ |)",
R"(| | _ \ __| _ \___| |___ __ _ __| |___ __| | __ _|_ ) / \ |__ / |)",
R"(| | /__ \ / -_) / _ \/ _` / _` / -_) _` | \ V // / | () | |_ \ |)",
R"(| |_|_\___/_|_\___|_\___/\__,_\__,_\___\__,_| \_//___(_)__(_)___/ |)",
2022-02-19 14:02:46 +01:00
R"(| |)",
R"(+-------------------------------------------------------------------+)"
};