1 | /* $Id: VBoxRTDeps.cpp 19892 2009-05-21 15:29:29Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - VBoxRT.dll/so dependencies.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | *
|
---|
26 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
27 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
28 | * additional information or have any questions.
|
---|
29 | */
|
---|
30 |
|
---|
31 | /*******************************************************************************
|
---|
32 | * Header Files *
|
---|
33 | *******************************************************************************/
|
---|
34 | #include <VBox/sup.h>
|
---|
35 | #include <iprt/system.h>
|
---|
36 | #include <iprt/assert.h>
|
---|
37 | #include <iprt/asm.h>
|
---|
38 | #ifdef VBOX_WITH_LIBXML2_IN_VBOXRT
|
---|
39 | # include <libxml/xmlmodule.h>
|
---|
40 | # include <libxml/globals.h>
|
---|
41 | # include <openssl/md5.h>
|
---|
42 | # include <openssl/rc4.h>
|
---|
43 | # include <openssl/pem.h>
|
---|
44 | # include <openssl/x509.h>
|
---|
45 | # include <openssl/rsa.h>
|
---|
46 | #endif
|
---|
47 |
|
---|
48 |
|
---|
49 | /*******************************************************************************
|
---|
50 | * Global Variables *
|
---|
51 | *******************************************************************************/
|
---|
52 | PFNRT g_VBoxRTDeps[] =
|
---|
53 | {
|
---|
54 | (PFNRT)SUPR3Init,
|
---|
55 | (PFNRT)SUPPageLock,
|
---|
56 | (PFNRT)SUPSemEventCreate,
|
---|
57 | #ifdef VBOX_WITH_LIBXML2_IN_VBOXRT
|
---|
58 | (PFNRT)xmlModuleOpen,
|
---|
59 | (PFNRT)MD5_Init,
|
---|
60 | (PFNRT)RC4,
|
---|
61 | (PFNRT)RC4_set_key,
|
---|
62 | (PFNRT)PEM_read_bio_X509,
|
---|
63 | (PFNRT)PEM_read_bio_PrivateKey,
|
---|
64 | (PFNRT)X509_free,
|
---|
65 | (PFNRT)i2d_X509,
|
---|
66 | (PFNRT)RSA_generate_key,
|
---|
67 | #endif
|
---|
68 | (PFNRT)RTAssertShouldPanic,
|
---|
69 | (PFNRT)ASMAtomicReadU64,
|
---|
70 | (PFNRT)ASMAtomicCmpXchgU64,
|
---|
71 | NULL
|
---|
72 | };
|
---|
73 |
|
---|