Fixed rev 373 not compiling on linux

git-svn-id: http://mc-server.googlecode.com/svn/trunk@375 0a769ca7-a7f5-676a-18bf-c427514a06d6
master
madmaxoft@gmail.com 2012-03-06 21:32:22 +00:00
parent 01577bed9d
commit 7ee0667b75
1 changed files with 5 additions and 0 deletions

View File

@ -12,6 +12,8 @@
#ifndef _MSC_VER
// Non-MS compilers don't know the override keyword
#define override
#define abstract
#define stricmp strcasecmp
#else
// MSVC produces warning C4481 on the override keyword usage, so disable the warning altogether
#pragma warning(disable:4481)
@ -107,6 +109,9 @@
/// Evaluates to the number of elements in an array (compile-time!)
#define ARRAYCOUNT(X) (sizeof(X) / sizeof(*(X)))
/// Allows arithmetic expressions like "32 KiB" (but consider using parenthesis around it, "(32 KiB)" )
#define KiB * 1024
#ifdef _MSC_VER
#define OBSOLETE __declspec(deprecated)
#define ABSTRACT abstract