about summary refs log tree commit diff
path: root/masterserver/include/network.h
blob: 455fe681f8b546c10b5cbbdd63d57a449b9efa78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _NETWORK_H
#define _NETWORK_H

#include <cstring>
#include "common.h"

char *WriteInt32(char *buffer, int32 value);
char *WriteFixedString(char *buffer, const char *string, int strlen);

char *ReadInt32(char *buffer, int32 *value);
char *ReadFixedString(char *buffer, char *string, int strlen);

#endif