patcher/Kiseki.Patcher/Header/Hooks/StandardOut.hpp

14 lines
364 B
C++

#ifdef SERVER
#pragma once
#include "Configuration.hpp"
#include "Helpers.hpp"
#include "Patches.hpp"
#include "Server.hpp"
typedef void(__thiscall* StandardOut__print_t)(int _this, int type, std::string* message);
void __fastcall StandardOut__print_hook(int _this, void*, int type, std::string* message);
extern StandardOut__print_t StandardOut__print;
#endif