VirtualBox

source: vbox/trunk/include/iprt/runtime.h@ 6000

Last change on this file since 6000 was 5999, checked in by vboxsync, 17 years ago

The Giant CDDL Dual-License Header Change.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.2 KB
Line 
1/** @file
2 * innotek Portable Runtime - Include Everything.
3 */
4
5/*
6 * Copyright (C) 2006-2007 innotek GmbH
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#include <iprt/alloc.h>
35#include <iprt/asm.h>
36#include <iprt/assert.h>
37#include <iprt/avl.h>
38#include <iprt/crc32.h>
39#include <iprt/crc64.h>
40#include <iprt/critsect.h>
41#include <iprt/dir.h>
42#include <iprt/err.h>
43#include <iprt/file.h>
44#include <iprt/fs.h>
45#include <iprt/ldr.h>
46#include <iprt/log.h>
47#include <iprt/md5.h>
48#include <iprt/mem.h>
49#include <iprt/path.h>
50#include <iprt/semaphore.h>
51#include <iprt/spinlock.h>
52#include <iprt/stdarg.h>
53#include <iprt/string.h>
54#include <iprt/system.h>
55#include <iprt/table.h>
56#include <iprt/thread.h>
57#include <iprt/time.h>
58#include <iprt/timer.h>
59#include <iprt/uni.h>
60#include <iprt/uuid.h>
61#include <iprt/zip.h>
62
63#ifdef IN_RING3
64# include <iprt/stream.h>
65# include <iprt/tcp.h>
66# include <iprt/ctype.h>
67# include <iprt/alloca.h> /** @todo iprt/alloca.h should be made available in R0 and GC too! */
68# include <iprt/process.h> /** @todo iprt/process.h should be made available in R0 too (partly). */
69#endif
70
71#ifdef IN_RING0
72# include <iprt/memobj.h>
73#endif
74
75
76#endif
77
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