Subversion Repositories WoWGM

Rev

Rev 28 | Rev 32 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 28 Rev 31
Line 5... Line 5...
5
#include <Engine/Base/CDataStore.h>
5
#include <Engine/Base/CDataStore.h>
6
#include <Net/NetClient/NetClient.hpp>
6
#include <Net/NetClient/NetClient.hpp>
7
 
7
 
8
struct ClientConnection {
8
struct ClientConnection {
9
 
9
 
10
  static void __cdecl GetCharacterList();
10
  static void GetCharacterList ();
11
 
11
 
12
};
12
};
13
 
-
 
14
 
-
 
15
/****************************************************************************
-
 
16
*
-
 
17
*  External functions
-
 
18
*
-
 
19
***/
-
 
20
 
13
 
21
//===========================================================================
14
//===========================================================================
22
extern void ClientServices_Initialize ();
15
extern void ClientServices_Initialize ();
23
 
16
 
24
//===========================================================================
17
//===========================================================================
Line 36... Line 29...
36
//===========================================================================
29
//===========================================================================
37
extern void ClientServices_SendOnConnection(CDataStore* msg);
30
extern void ClientServices_SendOnConnection(CDataStore* msg);
38
 
31
 
39
//===========================================================================
32
//===========================================================================
40
extern void ClientServices_SetMessageHandler (NETMESSAGE  msgID,
33
extern void ClientServices_SetMessageHandler (NETMESSAGE  msgID,
41
                                              int (*handler)(void*,NETMESSAGE,unsigned int,CDataStore*),
34
                                              int         (*handler)(void*,NETMESSAGE,unsigned int,CDataStore*),
42
                                              void* param);
35
                                              void*       param);
43
 
36
 
44
//===========================================================================
37
//===========================================================================
45
extern void ClientServices_ClearMessageHandler (NETMESSAGE msgID);
38
extern void ClientServices_ClearMessageHandler (NETMESSAGE msgID);
46
 
39
 
47
 
40