38 lines
790 B
C++
38 lines
790 B
C++
#include <std_include.hpp>
|
|
#include "launcher/launcher.hpp"
|
|
#include "loader/loader.hpp"
|
|
|
|
int CALLBACK WinMain(HINSTANCE /*hInstance*/, HINSTANCE /*hPrevInstance*/, LPSTR /*lpCmdLine*/, int /*nCmdShow*/)
|
|
{
|
|
FARPROC entry_point = nullptr;
|
|
|
|
{
|
|
launcher launcher;
|
|
const auto mode = launcher.run();
|
|
|
|
if (mode == launcher::mode::NONE) return 0;
|
|
|
|
loader loader(mode);
|
|
loader.set_import_resolver([](const std::string& module, const std::string& function) -> FARPROC
|
|
{
|
|
if (module == "steam_api.dll")
|
|
{
|
|
return utils::nt::module().get_proc<FARPROC>(function);
|
|
}
|
|
else if (function == "ExitProcess")
|
|
{
|
|
return FARPROC(exit);
|
|
}
|
|
|
|
return nullptr;
|
|
});
|
|
|
|
entry_point = loader.load({});
|
|
if (!entry_point) return 1;
|
|
|
|
loader.patch();
|
|
}
|
|
|
|
return entry_point();
|
|
}
|