r5sdk/r5dev/core/r5dev.h
Kawe Mazidjatari 73a3748e7c Dedicated optimizations
Strip 'CWin32Surface::InitStaticData()' and 'KeyboardLayout_Init()' from dedicated
2022-04-16 23:53:03 +02:00

22 lines
780 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_EMBLEM[] =
{
R"(+-------------------------------------------------------------+)",
R"(| ___ ___ ___ _ _ _ ___ __ |)",
R"(| | _ \ __| _ \___| |___ __ _ __| |___ __| | __ _|_ ) / \ |)",
R"(| | /__ \ / -_) / _ \/ _` / _` / -_) _` | \ V // / | () | |)",
R"(| |_|_\___/_|_\___|_\___/\__,_\__,_\___\__,_| \_//___(_)__/ |)",
R"(| |)",
R"(+-------------------------------------------------------------+)"
};