1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
/*
* Copyright (c) 2010,
* Gavriloaie Eugen-Andrei (shiretu@gmail.com)
*
* This file is part of crtmpserver.
* crtmpserver 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.
*
* crtmpserver 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 crtmpserver. If not, see <http://www.gnu.org/licenses/>.
*/
#ifdef LINUX
#ifndef _MAX_H
#define _MAX_H
#ifdef UINT64_MAX
#undef UINT64_MAX
#endif
#ifdef INT64_MAX
#undef INT64_MAX
#endif
#ifdef UINT32_MAX
#undef UINT32_MAX
#endif
#ifdef INT32_MAX
#undef INT32_MAX
#endif
#ifdef UINT16_MAX
#undef UINT16_MAX
#endif
#ifdef INT16_MAX
#undef INT16_MAX
#endif
#ifdef UINT8_MAX
#undef UINT8_MAX
#endif
#ifdef INT8_MAX
#undef INT8_MAX
#endif
#ifndef UINT64_MAX
#define UINT64_MAX ((uint64_t)(0xffffffffffffffffULL))
#endif
#ifndef INT64_MAX
#define INT64_MAX ((int64_t)(0x7fffffffffffffffLL))
#endif
#ifndef INT64_MIN
#define INT64_MIN ((int64_t)(0x8000000000000000LL))
#endif
#ifndef UINT32_MAX
#define UINT32_MAX ((uint32_t)(0xffffffffUL))
#endif
#ifndef INT32_MAX
#define INT32_MAX ((int32_t)(0x7fffffffL))
#endif
#ifndef INT32_MIN
#define INT32_MIN ((int32_t)(0x80000000L))
#endif
#ifndef UINT16_MAX
#define UINT16_MAX ((uint16_t)(0xffff))
#endif
#ifndef INT16_MAX
#define INT16_MAX ((int16_t)(0x7fff))
#endif
#ifndef INT16_MIN
#define INT16_MIN ((int16_t)(0x8000))
#endif
#ifndef UINT8_MAX
#define UINT8_MAX ((uint8_t)(0xff))
#endif
#ifndef INT8_MAX
#define INT8_MAX ((int8_t)(0x7f))
#endif
#ifndef INT8_MIN
#define INT8_MIN ((int8_t)(0x80))
#endif
#endif /* _MAX_H */
#endif /* LINUX */
|