Subversion Repositories WoWGM

Rev

Rev 31 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 tristanc 1
#include "pch.h"
2
#pragma hdrstop
3
 
4
#include "NetClient.hpp"
5
 
6
/****************************************************************************
7
*
8
*	Function pointers
9
*
10
***/
11
void(__thiscall* SendPtr) (CDataStore* msg) = *(void(__thiscall*)(CDataStore*))NETCLIENT__SEND;
12
 
13
 
14
//===========================================================================
15
void NetClient::Send(CDataStore* msg)
16
{
17
	SendPtr(msg);
18
}