blob: bf987af050fe8357813c715838506976f975d015 (
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
26
27
28
29
30
31
32
33
34
35
36
|
/*
* PARSEC HEADER: sys_bind.h
*/
#ifndef _SYS_BIND_H_
#define _SYS_BIND_H_
// PROTOCOL bindings
enum {
BT_PROTOCOL_PEERTOPEER,
BT_PROTOCOL_GAMESERVER,
BT_PROTOCOL_DEMONULL,
BT_PROTOCOL_NUMTYPES
};
// external variables
extern int sys_BindType_PROTOCOL;
// external functions
void SYS_Bind_PROTOCOL();
void SYS_BindDynamicFunctions();
#endif // _SYS_BIND_H_
|