blob: bbc056609b286232cbac497fc1064cceeec45a20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef _SERVER_CON_INC
#define _SERVER_CON_INC
#include "NetMessage.h"
#include "m_protosvc.h"
extern int status;
extern int sesskey;
extern int req_id;
extern bool myspace_server_running;
extern int my_uid;
void SetServerStatus(int st);
HANDLE FindContact(int uid);
HANDLE CreateContact(int uid, char *nick, char *email);
void SendMessage(ClientNetMessage &msg);
typedef struct {
PROTOSEARCHRESULT psr;
int uid;
} MYPROTOSEARCHRESULT;
#endif
|