server/src/platform.h

16 lines
226 B
C
Raw Normal View History

#pragma once
2010-08-08 10:06:34 +02:00
#ifndef UNILIB_H
#define UNILIB_H
2010-08-08 10:06:34 +02:00
#ifndef MAX_PATH
# define MAX_PATH 4096
#endif
#define UNUSED_ARG(a) (void)(a)
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
#endif