VirtualBox

source: vbox/trunk/include/VBox/com/VirtualBox.h@ 25149

Last change on this file since 25149 was 22357, checked in by vboxsync, 15 years ago

COM, Python: wrappers cleanup, some generic improvments

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.7 KB
Line 
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 Sun Microsystems, Inc.
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 (GPL) as published by the Free Software
25 * Foundation, in version 2 as it comes in the "COPYING" file of the
26 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
27 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
28 *
29 * The contents of this file may alternatively be used under the terms
30 * of the Common Development and Distribution License Version 1.0
31 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
32 * VirtualBox OSE distribution, in which case the provisions of the
33 * CDDL are applicable instead of those of the GPL.
34 *
35 * You may elect to license modified versions of this file under the
36 * terms and conditions of either the GPL or the CDDL or both.
37 *
38 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
39 * Clara, CA 95054 USA or visit http://www.sun.com if you need
40 * additional information or have any questions.
41 */
42
43#ifndef ___VBox_com_VirtualBox_h
44#define ___VBox_com_VirtualBox_h
45
46// generated VirtualBox COM library definition file
47#if !defined (VBOXCOM_NOINCLUDE)
48#if !defined (VBOX_WITH_XPCOM)
49#include <VirtualBox.h>
50#else
51#include <VirtualBox_XPCOM.h>
52#endif
53#endif // !defined (VBOXCOM_NOINCLUDE)
54
55// for convenience
56#include "VBox/com/defs.h"
57#include "VBox/com/ptr.h"
58
59template <class I>
60inline HRESULT createCallbackWrapper(I* aInstance,
61 I** paWrapper)
62{
63 ComPtr<ILocalOwner> ptr;
64
65 HRESULT rc = ptr.createInprocObject(CLSID_CallbackWrapper);
66 if (FAILED(rc))
67 return rc;
68
69 rc = ptr->SetLocalObject(aInstance);
70 if (FAILED(rc))
71 return rc;
72
73 ComPtr<I> ptr2 = ptr;
74 if (ptr2.isNull())
75 return E_FAIL;
76
77 rc = ptr2.queryInterfaceTo(paWrapper);
78 return rc;
79}
80#endif
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