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