1 | /** @file
|
---|
2 | * IPRT - Include Everything.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2010 Oracle Corporation
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | */
|
---|
25 |
|
---|
26 | #ifndef ___iprt_runtime_h
|
---|
27 | #define ___iprt_runtime_h
|
---|
28 |
|
---|
29 | #include <iprt/cdefs.h>
|
---|
30 | #include <iprt/types.h>
|
---|
31 | #include <iprt/param.h>
|
---|
32 | #include <iprt/initterm.h>
|
---|
33 |
|
---|
34 | #if !defined(IN_RC) && !defined(IN_RING0_AGNOSTIC)
|
---|
35 | # include <iprt/alloca.h>
|
---|
36 | #endif
|
---|
37 | #include <iprt/asm.h>
|
---|
38 | #include <iprt/assert.h>
|
---|
39 | #include <iprt/avl.h>
|
---|
40 | #include <iprt/crc.h>
|
---|
41 | #include <iprt/critsect.h>
|
---|
42 | #include <iprt/dir.h>
|
---|
43 | #include <iprt/err.h>
|
---|
44 | #ifndef IN_RC
|
---|
45 | # include <iprt/file.h>
|
---|
46 | # include <iprt/fs.h>
|
---|
47 | #endif
|
---|
48 | #include <iprt/getopt.h>
|
---|
49 | #include <iprt/ldr.h>
|
---|
50 | #include <iprt/log.h>
|
---|
51 | #include <iprt/md5.h>
|
---|
52 | #ifndef IN_RC
|
---|
53 | # include <iprt/mem.h>
|
---|
54 | # include <iprt/mp.h>
|
---|
55 | #endif
|
---|
56 | #include <iprt/path.h>
|
---|
57 | #include <iprt/semaphore.h>
|
---|
58 | #include <iprt/spinlock.h>
|
---|
59 | #include <iprt/stdarg.h>
|
---|
60 | #include <iprt/string.h>
|
---|
61 | #include <iprt/system.h>
|
---|
62 | #include <iprt/table.h>
|
---|
63 | #ifndef IN_RC
|
---|
64 | # include <iprt/thread.h>
|
---|
65 | #endif
|
---|
66 | #include <iprt/time.h>
|
---|
67 | #include <iprt/timer.h>
|
---|
68 | #include <iprt/uni.h>
|
---|
69 | #include <iprt/uuid.h>
|
---|
70 | #include <iprt/zip.h>
|
---|
71 |
|
---|
72 | #ifdef IN_RING3
|
---|
73 | # include <iprt/stream.h>
|
---|
74 | # include <iprt/tcp.h>
|
---|
75 | # include <iprt/ctype.h>
|
---|
76 | # include <iprt/alloca.h> /** @todo iprt/alloca.h should be made available in R0 and GC too! */
|
---|
77 | # include <iprt/process.h> /** @todo iprt/process.h should be made available in R0 too (partly). */
|
---|
78 | #endif
|
---|
79 |
|
---|
80 | #ifdef IN_RING0
|
---|
81 | # include <iprt/memobj.h>
|
---|
82 | #endif
|
---|
83 |
|
---|
84 |
|
---|
85 | #endif
|
---|
86 |
|
---|