VirtualBox

source: kBuild/trunk/src/kash/shtypes.h@ 1538

Last change on this file since 1538 was 1286, checked in by bird, 17 years ago

KBUILD_OS_* -> K_OS from k/kDefs.h. Use k/kTypes.h too.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
File size: 2.5 KB
Line 
1/* $Id: shtypes.h 1286 2007-11-30 03:08:25Z bird $ */
2/** @file
3 *
4 * Wrapper for missing types and such.
5 *
6 * Copyright (c) 2007 knut st. osmundsen <[email protected]>
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 "k/kTypes.h" /* Use these, not the ones below. */
31
32#include <sys/types.h>
33#include <stdlib.h>
34
35#ifdef _MSC_VER
36# include <io.h> /* intptr_t and uintptr_t */
37typedef signed char int8_t;
38typedef unsigned char uint8_t;
39typedef short int16_t;
40typedef unsigned short uint16_t;
41typedef int int32_t;
42typedef unsigned int uint32_t;
43typedef _int64 int64_t;
44typedef unsigned _int64 uint64_t;
45
46#define INT16_C(c) (c)
47#define INT32_C(c) (c)
48#define INT64_C(c) (c ## LL)
49
50#define UINT8_C(c) (c)
51#define UINT16_C(c) (c)
52#define UINT32_C(c) (c ## U)
53#define UINT64_C(c) (c ## ULL)
54
55#define INTMAX_C(c) (c ## LL)
56#define UINTMAX_C(c) (c ## ULL)
57
58#undef INT8_MIN
59#define INT8_MIN (-0x7f-1)
60#undef INT16_MIN
61#define INT16_MIN (-0x7fff-1)
62#undef INT32_MIN
63#define INT32_MIN (-0x7fffffff-1)
64#undef INT64_MIN
65#define INT64_MIN (-0x7fffffffffffffffLL-1)
66
67#undef INT8_MAX
68#define INT8_MAX 0x7f
69#undef INT16_MAX
70#define INT16_MAX 0x7fff
71#undef INT32_MAX
72#define INT32_MAX 0x7fffffff
73#undef INT64_MAX
74#define INT64_MAX 0x7fffffffffffffffLL
75
76#undef UINT8_MAX
77#define UINT8_MAX 0xff
78#undef UINT16_MAX
79#define UINT16_MAX 0xffff
80#undef UINT32_MAX
81#define UINT32_MAX 0xffffffffU
82#undef UINT64_MAX
83#define UINT64_MAX 0xffffffffffffffffULL
84
85typedef int pid_t;
86typedef unsigned short uid_t;
87typedef unsigned short gid_t;
88typedef int mode_t;
89typedef intptr_t ssize_t;
90
91#else
92# include <stdint.h>
93#endif
94
95struct shinstance;
96typedef struct shinstance shinstance;
97
98#endif
99
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette