1 | /** @file
|
---|
2 | * PDM - Pluggable Device Manager, Common Instance Macros.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2010 Oracle Corporation
|
---|
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 ___VBox_vmm_pdmins_h
|
---|
27 | #define ___VBox_vmm_pdmins_h
|
---|
28 |
|
---|
29 |
|
---|
30 | /** @defgroup grp_pdm_ins Common PDM Instance Macros
|
---|
31 | * @ingroup grp_pdm
|
---|
32 | * @{
|
---|
33 | */
|
---|
34 |
|
---|
35 | /** @def PDMBOTHCBDECL
|
---|
36 | * Macro for declaring a callback which is static in HC and exported in GC.
|
---|
37 | */
|
---|
38 | #if defined(IN_RC) || defined(IN_RING0)
|
---|
39 | # ifdef __cplusplus
|
---|
40 | # define PDMBOTHCBDECL(type) extern "C" DECLEXPORT(type)
|
---|
41 | # else
|
---|
42 | # define PDMBOTHCBDECL(type) DECLEXPORT(type)
|
---|
43 | # endif
|
---|
44 | #else
|
---|
45 | # define PDMBOTHCBDECL(type) static type
|
---|
46 | #endif
|
---|
47 |
|
---|
48 | /** @def PDMINS_2_DATA
|
---|
49 | * Converts a PDM Device, USB Device, or Driver instance pointer to a pointer to the instance data.
|
---|
50 | */
|
---|
51 | #define PDMINS_2_DATA(pIns, type) ( (type)(void *)&(pIns)->achInstanceData[0] )
|
---|
52 |
|
---|
53 | /** @def PDMINS_2_DATA_RCPTR
|
---|
54 | * Converts a PDM Device, USB Device, or Driver instance pointer to a RC pointer to the instance data.
|
---|
55 | */
|
---|
56 | #define PDMINS_2_DATA_RCPTR(pIns) ( (pIns)->pvInstanceDataRC )
|
---|
57 |
|
---|
58 | /** @def PDMINS_2_DATA_R3PTR
|
---|
59 | * Converts a PDM Device, USB Device, or Driver instance pointer to a HC pointer to the instance data.
|
---|
60 | */
|
---|
61 | #define PDMINS_2_DATA_R3PTR(pIns) ( (pIns)->pvInstanceDataR3 )
|
---|
62 |
|
---|
63 | /** @def PDMINS_2_DATA_R0PTR
|
---|
64 | * Converts a PDM Device, USB Device, or Driver instance pointer to a R0 pointer to the instance data.
|
---|
65 | */
|
---|
66 | #define PDMINS_2_DATA_R0PTR(pIns) ( (pIns)->pvInstanceDataR0 )
|
---|
67 |
|
---|
68 | /** @} */
|
---|
69 |
|
---|
70 | #endif
|
---|