Subversion Repositories WoWGM

Rev

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"

/****************************************************************************
*
*       Function pointers
*
***/
void(__thiscall* SendPtr) (CDataStore* msg) = *(void(__thiscall*)(CDataStore*))NETCLIENT__SEND;


//===========================================================================
void NetClient::Send(CDataStore* msg)
{
        SendPtr(msg);
}