| 1 | /* $Id: $ */
|
|---|
| 2 | /** @file
|
|---|
| 3 | *
|
|---|
| 4 | * Wrapper for missing types and such.
|
|---|
| 5 | *
|
|---|
| 6 | * Copyright (c) 2007 knut st. osmundsen <bird-src-spam@anduin.net>
|
|---|
| 7 | *
|
|---|
| 8 | *
|
|---|
| 9 | * This file is part of kBuild.
|
|---|
| 10 | *
|
|---|
| 11 | * kBuild is free software; you can redistribute it and/or modify
|
|---|
| 12 | * it under the terms of the GNU General Public License as published by
|
|---|
| 13 | * the Free Software Foundation; either version 2 of the License, or
|
|---|
| 14 | * (at your option) any later version.
|
|---|
| 15 | *
|
|---|
| 16 | * kBuild is distributed in the hope that it will be useful,
|
|---|
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 19 | * GNU General Public License for more details.
|
|---|
| 20 | *
|
|---|
| 21 | * You should have received a copy of the GNU General Public License
|
|---|
| 22 | * along with kBuild; if not, write to the Free Software
|
|---|
| 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|---|
| 24 | *
|
|---|
| 25 | */
|
|---|
| 26 |
|
|---|
| 27 | #ifndef ___shtypes_h___
|
|---|
| 28 | #define ___shtypes_h___
|
|---|
| 29 |
|
|---|
| 30 | #include <sys/types.h>
|
|---|
| 31 | #include <stdlib.h>
|
|---|
| 32 |
|
|---|
| 33 | #ifdef _MSC_VER
|
|---|
| 34 | #include <io.h> /* intptr_t and uintptr_t */
|
|---|
| 35 | typedef signed char int8_t;
|
|---|
| 36 | typedef unsigned char uint8_t;
|
|---|
| 37 | typedef short int16_t;
|
|---|
| 38 | typedef unsigned short uint16_t;
|
|---|
| 39 | typedef int int32_t;
|
|---|
| 40 | typedef unsigned int uint32_t;
|
|---|
| 41 | typedef _int64 int64_t;
|
|---|
| 42 | typedef unsigned _int64 uint64_t;
|
|---|
| 43 |
|
|---|
| 44 | #define INT16_C(c) (c)
|
|---|
| 45 | #define INT32_C(c) (c)
|
|---|
| 46 | #define INT64_C(c) (c ## LL)
|
|---|
| 47 |
|
|---|
| 48 | #define UINT8_C(c) (c)
|
|---|
| 49 | #define UINT16_C(c) (c)
|
|---|
| 50 | #define UINT32_C(c) (c ## U)
|
|---|
| 51 | #define UINT64_C(c) (c ## ULL)
|
|---|
| 52 |
|
|---|
| 53 | #define INTMAX_C(c) (c ## LL)
|
|---|
| 54 | #define UINTMAX_C(c) (c ## ULL)
|
|---|
| 55 |
|
|---|
| 56 | #define INT8_MIN (-0x7f-1)
|
|---|
| 57 | #define INT16_MIN (-0x7fff-1)
|
|---|
| 58 | #define INT32_MIN (-0x7fffffff-1)
|
|---|
| 59 | #define INT64_MIN (-0x7fffffffffffffffLL-1)
|
|---|
| 60 |
|
|---|
| 61 | #define INT8_MAX 0x7f
|
|---|
| 62 | #define INT16_MAX 0x7fff
|
|---|
| 63 | #define INT32_MAX 0x7fffffff
|
|---|
| 64 | #define INT64_MAX 0x7fffffffffffffffLL
|
|---|
| 65 |
|
|---|
| 66 | #define UINT8_MAX 0xff
|
|---|
| 67 | #define UINT16_MAX 0xffff
|
|---|
| 68 | #define UINT32_MAX 0xffffffffU
|
|---|
| 69 | #define UINT64_MAX 0xffffffffffffffffULL
|
|---|
| 70 |
|
|---|
| 71 | #else
|
|---|
| 72 | # include <stdint.h>
|
|---|
| 73 | #endif
|
|---|
| 74 |
|
|---|
| 75 | struct shinstance;
|
|---|
| 76 | typedef struct shinstance shinstance;
|
|---|
| 77 |
|
|---|
| 78 | #endif
|
|---|
| 79 |
|
|---|