server/src/platform.h

26 lines
840 B
C
Raw Normal View History

#pragma once
2010-08-08 10:06:34 +02:00
2017-03-25 18:36:27 +01:00
#ifndef _LP64
#define _LP64 0 /* fix a warning in pdcurses 3.4 */
2017-03-25 18:36:27 +01:00
#endif
2017-01-10 18:07:36 +01:00
#ifdef _MSC_VER
2017-12-29 11:44:14 +01:00
/* @see https://developercommunity.visualstudio.com/content/problem/69874/warning-c4001-in-standard-library-stringh-header.html */
#if _MSC_VER >= 1900
#pragma warning(disable: 4710 4820 4001)
2017-01-10 18:07:36 +01:00
#pragma warning(disable: 4100) // unreferenced formal parameter
#pragma warning(disable: 4456) // declaration hides previous
#pragma warning(disable: 4457) // declaration hides function parameter
#pragma warning(disable: 4459) // declaration hides global
#pragma warning(disable: 4224) // formal parameter was previously defined as a type
#endif
2017-12-29 11:44:14 +01:00
/* @see https://insanecoding.blogspot.no/2007/11/pathmax-simply-isnt.html */
#define PATH_MAX 260
2017-01-10 18:07:36 +01:00
#endif
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
#define MAX(a, b) (((a) > (b)) ? (a) : (b))