iw4x-client/src/Components/Modules/QuickPatch.hpp

34 lines
850 B
C++
Raw Normal View History

2016-08-01 11:21:46 -04:00
namespace Components
{
class QuickPatch : public Component
{
public:
typedef void(Callback)();
QuickPatch();
~QuickPatch();
2016-08-15 10:40:30 -04:00
#ifdef DEBUG
const char* GetName() { return "QuickPatch"; };
#endif
2016-08-01 11:21:46 -04:00
static void UnlockStats();
static void OnShutdown(Callback* callback);
static void OnFrame(Callback* callback);
static void Once(Callback* callback);
private:
static wink::signal<wink::slot<Callback>> ShutdownSignal;
static int64_t* GetStatsID();
static void ShutdownStub(int channel, const char* message);
2016-08-07 11:52:13 -04:00
static void SelectStringTableEntryInDvarStub();
2016-08-01 11:21:46 -04:00
static int MsgReadBitsCompressCheckSV(const char *from, char *to, int size);
static int MsgReadBitsCompressCheckCL(const char *from, char *to, int size);
static void CL_HandleRelayPacketCheck(Game::msg_t* msg, int client);
};
}