
- Updated VS9/10 project files. - Updated `configure` & `Makefile`s. - New GM, Commands & Permissions system: - '''This is a backwards compatibility breaking update''', please read tid:58877 - Replaced GM levels with Player Groups. - Commands permissions & other privileges now depend on group, not GM level. - `@help` command improvements: requires "commandname" param and shows more detailed info about commands. - Modified GM whisper system to deliver messages basing on permissions, not GM level. - Remote trade request is now possible only if player is allowed to use `@trade` command as well. - Added a proper permission to use `/changemaptype` command. - `clif_displaymessage` is now capable of displaying multiline messages. - All `ACMD_FUNC`s are static now, and the only way to invoke them is with `is_atcommand()`; all client commands (starting with `/`) are now translated into corresponding atcommands (with exception of `/kick` used on monster, as there is no atcommand to kill single monster). - Removed nonsense "bot check" triggering when player blocked (`/ex`) Server. - Merged `@monster`, `@monsterbig` and `@monstersmall`. - Improved flow of atcommand execution to avoid revealing info about online players or existing commands to non-privileged players. - Merged `atcommand` and `charcommand` script functions (`charcommand` is aliased to `atcommand`). - Fixed `atcommand` script function reading unknown memory area (possible access violation). git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@15572 54d463be-8e91-2dee-dedb-b68131a5f0ec
90 lines
2.3 KiB
C
90 lines
2.3 KiB
C
/* ----------------------------------------------------------------------------
|
|
libconfig - A library for processing structured configuration files
|
|
Copyright (C) 2005-2010 Mark A Lindner
|
|
|
|
This file is part of libconfig.
|
|
|
|
This library is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
----------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef __wincompat_h
|
|
#define __wincompat_h
|
|
|
|
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__)
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning (disable: 4996)
|
|
#endif
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
|
|
#define snprintf _snprintf
|
|
|
|
#ifndef __MINGW32__
|
|
#define atoll _atoi64
|
|
#define strtoull _strtoui64
|
|
#endif /* __MINGW32__ */
|
|
|
|
#endif
|
|
|
|
#if (defined(WIN32) || defined(_WIN32) || defined(__WIN32__) \
|
|
|| defined(__MINGW32__))
|
|
|
|
/* Why does gcc on MinGW use the Visual C++ style format directives
|
|
* for 64-bit integers? Inquiring minds want to know....
|
|
*/
|
|
|
|
#define INT64_FMT "%I64d"
|
|
#define UINT64_FMT "%I64u"
|
|
|
|
#define INT64_HEX_FMT "%I64X"
|
|
|
|
#define FILE_SEPARATOR "\\"
|
|
|
|
#else /* defined(WIN32) || defined(__MINGW32__) */
|
|
|
|
#define INT64_FMT "%lld"
|
|
#define UINT64_FMT "%llu"
|
|
|
|
#define INT64_HEX_FMT "%llX"
|
|
|
|
#define FILE_SEPARATOR "/"
|
|
|
|
#endif /* defined(WIN32) || defined(__MINGW32__) */
|
|
|
|
#if (defined(WIN32) || defined(_WIN32) || defined(__WIN32__)) \
|
|
&& ! defined(__MINGW32__)
|
|
|
|
#define INT64_CONST(I) (I ## i64)
|
|
#define UINT64_CONST(I) (I ## Ui64)
|
|
|
|
#ifndef INT32_MAX
|
|
#define INT32_MAX (2147483647)
|
|
#endif
|
|
|
|
#ifndef INT32_MIN
|
|
#define INT32_MIN (-2147483647-1)
|
|
#endif
|
|
|
|
#else /* defined(WIN32) && ! defined(__MINGW32__) */
|
|
|
|
#define INT64_CONST(I) (I ## LL)
|
|
#define UINT64_CONST(I) (I ## ULL)
|
|
|
|
#endif /* defined(WIN32) && ! defined(__MINGW32__) */
|
|
|
|
#endif /* __wincompat_h */
|