Subversion Repositories WoWGM

Rev

Rev 32 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 tristanc 1
#include "pch.h"
36 tristanc 2
#pragma hdrstop
3
 
4
#include "NetClient.hpp"
5
 
6
 
7
/******************************************************************************
8
*
9
*   Client memory addresses
10
*
11
***/
12
 
13
#define  NETCLIENT__SEND  0x00632B50
14
 
15
 
16
/******************************************************************************
17
*
18
*   Client function pointers
19
*
20
***/
21
 
22
void(__thiscall* SendPtr)(CDataStore*) = *(void(__thiscall*)(CDataStore*))NETCLIENT__SEND;
23
 
24
 
25
/******************************************************************************
26
*
27
*   NetClient class implementation
28
*
29
***/
30
 
31
//=============================================================================
32
void NetClient::Send (CDataStore* msg) {
33
	SendPtr(msg);
34
}
35