Rev 31 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
#include "pch.h"
#pragma hdrstop
#include "NetClient.hpp"
/****************************************************************************
*
* Client memory addresses
*
***/
#define NETCLIENT__SEND 0x00632B50
/****************************************************************************
*
* Client function pointers
*
***/
void(__thiscall* SendPtr)(CDataStore*) = *(void(__thiscall*)(CDataStore*))NETCLIENT__SEND;
/****************************************************************************
*
* NetClient class implementation
*
***/
//===========================================================================
void NetClient::Send (CDataStore* msg) {
SendPtr(msg);
}