diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
| commit | c068f22329d5cc722622a2183bbb22eef2093df7 (patch) | |
| tree | 12d56c1aede67988a55e241364606bfbb4dba933 /src/parsec/include/sys_bind.h | |
| download | openparsec-main.tar.xz openparsec-main.zip | |
Diffstat (limited to 'src/parsec/include/sys_bind.h')
| -rw-r--r-- | src/parsec/include/sys_bind.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/parsec/include/sys_bind.h b/src/parsec/include/sys_bind.h new file mode 100644 index 0000000..bf987af --- /dev/null +++ b/src/parsec/include/sys_bind.h @@ -0,0 +1,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_ + + |
