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>
|
2021-04-25 14:36:55 -07:00
|
|
|
|
|
|
|
__declspec(dllexport) void DummyExport()
|
|
|
|
{
|
|
|
|
// Required for detours.
|
2021-06-08 10:54:49 -07:00
|
|
|
}
|
2022-01-16 01:18:36 +01:00
|
|
|
|
2022-10-09 12:41:22 +02:00
|
|
|
const static std::string R5R_EMBLEM[] =
|
2022-01-16 01:18:36 +01:00
|
|
|
{
|
2022-04-16 23:53:03 +02:00
|
|
|
R"(+-------------------------------------------------------------+)",
|
2022-09-25 01:20:48 +02:00
|
|
|
R"(| ___ ___ ___ _ _ _ ___ ___ |)",
|
|
|
|
R"(| | _ \ __| _ \___| |___ __ _ __| |___ __| | __ _|_ ) |_ ) |)",
|
|
|
|
R"(| | /__ \ / -_) / _ \/ _` / _` / -_) _` | \ V // / _ / / |)",
|
|
|
|
R"(| |_|_\___/_|_\___|_\___/\__,_\__,_\___\__,_| \_//___(_)___| |)",
|
2022-04-16 23:53:03 +02:00
|
|
|
R"(| |)",
|
|
|
|
R"(+-------------------------------------------------------------+)"
|
2022-01-16 01:18:36 +01:00
|
|
|
};
|
2022-10-09 12:41:22 +02:00
|
|
|
|
|
|
|
static bool s_bNoWorkerDll = false;
|