1 | /** @file
|
---|
2 | * MS COM / XPCOM Abstraction Layer:
|
---|
3 | * VirtualBox COM Library definitions.
|
---|
4 | *
|
---|
5 | * Note: This is the main header file that COM/XPCOM clients
|
---|
6 | * include; however, it is only a wrapper around another
|
---|
7 | * platform-dependent include file that contains the real
|
---|
8 | * COM/XPCOM interface declarations. That other include file
|
---|
9 | * is generated automatically at build time from
|
---|
10 | * /src/VBox/Main/idl/VirtualBox.xidl, which contains all
|
---|
11 | * the VirtualBox interfaces; the include file is called
|
---|
12 | * VirtualBox.h on Windows hosts and VirtualBox_XPCOM.h
|
---|
13 | * on Linux hosts. The build process places it in
|
---|
14 | * out/<platform>/bin/sdk/include, from where it gets
|
---|
15 | * included by the rest of the VirtualBox code.
|
---|
16 | */
|
---|
17 |
|
---|
18 | /*
|
---|
19 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
20 | *
|
---|
21 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
22 | * available from http://www.virtualbox.org. This file is free software;
|
---|
23 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
24 | * General Public License as published by the Free Software Foundation,
|
---|
25 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
26 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
27 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
28 | */
|
---|
29 |
|
---|
30 | #ifndef ___VBox_com_VirtualBox_h
|
---|
31 | #define ___VBox_com_VirtualBox_h
|
---|
32 |
|
---|
33 | // generated VirtualBox COM library definition file
|
---|
34 | #if !defined (VBOXCOM_NOINCLUDE)
|
---|
35 | #if defined (RT_OS_WINDOWS)
|
---|
36 | #include <VirtualBox.h>
|
---|
37 | #else
|
---|
38 | #include <VirtualBox_XPCOM.h>
|
---|
39 | #endif
|
---|
40 | #endif // !defined (VBOXCOM_NOINCLUDE)
|
---|
41 |
|
---|
42 | // for convenience
|
---|
43 | #include "VBox/com/defs.h"
|
---|
44 |
|
---|
45 | #endif
|
---|