| Line 11... |
Line 11... |
| 11 |
//=========================================================================
|
11 |
//=========================================================================
|
| 12 |
static void GetCharacterList ();
|
12 |
static void GetCharacterList ();
|
| 13 |
|
13 |
|
| 14 |
};
|
14 |
};
|
| 15 |
|
15 |
|
| 16 |
//===========================================================================
|
16 |
//=============================================================================
|
| 17 |
extern void ClientServices_Initialize ();
|
17 |
extern void ClientServices_Initialize ();
|
| 18 |
|
18 |
|
| 19 |
//===========================================================================
|
19 |
//=============================================================================
|
| 20 |
extern void* ClientServices_Connection ();
|
20 |
extern void* ClientServices_Connection ();
|
| 21 |
|
21 |
|
| 22 |
//===========================================================================
|
22 |
//=============================================================================
|
| 23 |
extern void ClientServices_Destroy ();
|
23 |
extern void ClientServices_Destroy ();
|
| 24 |
|
24 |
|
| 25 |
//===========================================================================
|
25 |
//=============================================================================
|
| 26 |
extern BOOL ClientServices_Report (unsigned int category, char const* title);
|
26 |
extern BOOL ClientServices_Report (unsigned int category, char const* title);
|
| 27 |
|
27 |
|
| 28 |
//===========================================================================
|
28 |
//=============================================================================
|
| 29 |
extern void ClientServices_Send (CDataStore* netMessage);
|
29 |
extern void ClientServices_Send (CDataStore* netMessage);
|
| 30 |
|
30 |
|
| 31 |
//===========================================================================
|
31 |
//=============================================================================
|
| 32 |
extern void ClientServices_SendOnConnection (CDataStore* msg);
|
32 |
extern void ClientServices_SendOnConnection (CDataStore* msg);
|
| 33 |
|
33 |
|
| 34 |
//===========================================================================
|
34 |
//=============================================================================
|
| 35 |
extern void ClientServices_SetMessageHandler (NETMESSAGE msgID,
|
35 |
extern void ClientServices_SetMessageHandler (NETMESSAGE msgID,
|
| 36 |
int (*handler)(void*,NETMESSAGE,unsigned int,CDataStore*),
|
36 |
int (*handler)(void*,NETMESSAGE,unsigned int,CDataStore*),
|
| 37 |
void* param);
|
37 |
void* param);
|
| 38 |
|
38 |
|
| 39 |
//===========================================================================
|
39 |
//=============================================================================
|
| 40 |
extern void ClientServices_ClearMessageHandler (NETMESSAGE msgID);
|
40 |
extern void ClientServices_ClearMessageHandler (NETMESSAGE msgID);
|
| 41 |
|
41 |
|
| 42 |
|
42 |
|
| 43 |
#endif // ifndef _CLIENTSERVICES_H_
|
43 |
#endif // ifndef _CLIENTSERVICES_H_
|
| 44 |
|
44 |
|