VirtualBox

source: vbox/trunk/include/VBox/cdefs.h@ 28800

Last change on this file since 28800 was 28800, checked in by vboxsync, 14 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 11.0 KB
Line 
1/** @file
2 * VirtualBox - Common C and C++ definition.
3 */
4
5/*
6 * Copyright (C) 2006-2007 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_cdefs_h
27#define ___VBox_cdefs_h
28
29#include <iprt/cdefs.h>
30
31
32/** @def VBOX_WITH_STATISTICS
33 * When defined all statistics will be included in the build.
34 * This is enabled by default in all debug builds.
35 */
36#ifndef VBOX_WITH_STATISTICS
37# ifdef DEBUG
38# define VBOX_WITH_STATISTICS
39# endif
40#endif
41
42/** @def VBOX_STRICT
43 * Alias for RT_STRICT.
44 */
45#ifdef RT_STRICT
46# ifndef VBOX_STRICT
47# define VBOX_STRICT
48# endif
49#endif
50
51
52/*
53 * Shut up DOXYGEN warnings and guide it properly thru the code.
54 */
55#ifdef DOXYGEN_RUNNING
56#define VBOX_WITH_STATISTICS
57#define VBOX_STRICT
58#define IN_DBG
59#define IN_DIS
60#define IN_INTNET_R0
61#define IN_INTNET_R3
62#define IN_REM_R3
63#define IN_SUP_R0
64#define IN_SUP_R3
65#define IN_SUP_RC
66#define IN_SUP_STATIC
67#define IN_USBLIB
68#define IN_VBOXDDU
69#define IN_VMM_RC
70#define IN_VMM_R0
71#define IN_VMM_R3
72#define IN_VMM_STATIC
73#endif
74
75
76
77
78/** @def VBOXCALL
79 * The standard calling convention for VBOX interfaces.
80 */
81#define VBOXCALL RTCALL
82
83
84
85/** @def IN_DIS
86 * Used to indicate whether we're inside the same link module as the
87 * disassembler.
88 */
89/** @def DISDECL(type)
90 * Disassembly export or import declaration.
91 * @param type The return type of the function declaration.
92 */
93#if defined(IN_DIS)
94# define DISDECL(type) DECLEXPORT(type) VBOXCALL
95#else
96# define DISDECL(type) DECLIMPORT(type) VBOXCALL
97#endif
98
99
100
101/** @def IN_DBG
102 * Used to indicate whether we're inside the same link module as the debugger
103 * console, gui, and related things (ring-3).
104 */
105/** @def DBGDECL(type)
106 * Debugger module export or import declaration.
107 * Functions declared using this exists only in R3 since the
108 * debugger modules is R3 only.
109 * @param type The return type of the function declaration.
110 */
111#if defined(IN_DBG_R3) || defined(IN_DBG)
112# define DBGDECL(type) DECLEXPORT(type) VBOXCALL
113#else
114# define DBGDECL(type) DECLIMPORT(type) VBOXCALL
115#endif
116
117
118
119/** @def IN_INTNET_R3
120 * Used to indicate whether we're inside the same link module as the Ring-3
121 * Internal Networking Service.
122 */
123/** @def INTNETR3DECL(type)
124 * Internal Networking Service export or import declaration.
125 * @param type The return type of the function declaration.
126 */
127#ifdef IN_INTNET_R3
128# define INTNETR3DECL(type) DECLEXPORT(type) VBOXCALL
129#else
130# define INTNETR3DECL(type) DECLIMPORT(type) VBOXCALL
131#endif
132
133/** @def IN_INTNET_R0
134 * Used to indicate whether we're inside the same link module as the R0
135 * Internal Network Service.
136 */
137/** @def INTNETR0DECL(type)
138 * Internal Networking Service export or import declaration.
139 * @param type The return type of the function declaration.
140 */
141#ifdef IN_INTNET_R0
142# define INTNETR0DECL(type) DECLEXPORT(type) VBOXCALL
143#else
144# define INTNETR0DECL(type) DECLIMPORT(type) VBOXCALL
145#endif
146
147
148
149/** @def IN_REM_R3
150 * Used to indicate whether we're inside the same link module as
151 * the HC Ring-3 Recompiled Execution Manager.
152 */
153/** @def REMR3DECL(type)
154 * Recompiled Execution Manager HC Ring-3 export or import declaration.
155 * @param type The return type of the function declaration.
156 */
157#ifdef IN_REM_R3
158# define REMR3DECL(type) DECLEXPORT(type) VBOXCALL
159#else
160# define REMR3DECL(type) DECLIMPORT(type) VBOXCALL
161#endif
162
163
164
165/** @def IN_SUP_R3
166 * Used to indicate whether we're inside the same link module as the Ring-3
167 * Support Library or not.
168 */
169/** @def SUPR3DECL(type)
170 * Support library export or import declaration.
171 * @param type The return type of the function declaration.
172 */
173#ifdef IN_SUP_R3
174# define SUPR3DECL(type) DECLEXPORT(type) VBOXCALL
175#else
176# define SUPR3DECL(type) DECLIMPORT(type) VBOXCALL
177#endif
178
179/** @def IN_SUP_R0
180 * Used to indicate whether we're inside the same link module as the Ring-0
181 * Support Library or not.
182 */
183/** @def IN_SUP_STATIC
184 * Used to indicate that the Support Library is built or used as a static
185 * library.
186 */
187/** @def SUPR0DECL(type)
188 * Support library export or import declaration.
189 * @param type The return type of the function declaration.
190 */
191#ifdef IN_SUP_R0
192# ifdef IN_SUP_STATIC
193# define SUPR0DECL(type) DECLHIDDEN(type) VBOXCALL
194# else
195# define SUPR0DECL(type) DECLEXPORT(type) VBOXCALL
196# endif
197#else
198# ifdef IN_SUP_STATIC
199# define SUPR0DECL(type) DECLHIDDEN(type) VBOXCALL
200# else
201# define SUPR0DECL(type) DECLIMPORT(type) VBOXCALL
202# endif
203#endif
204
205/** @def IN_SUP_RC
206 * Used to indicate whether we're inside the same link module as the RC Support
207 * Library or not.
208 */
209/** @def SUPRCDECL(type)
210 * Support library export or import declaration.
211 * @param type The return type of the function declaration.
212 */
213#ifdef IN_SUP_RC
214# define SUPRCDECL(type) DECLEXPORT(type) VBOXCALL
215#else
216# define SUPRCDECL(type) DECLIMPORT(type) VBOXCALL
217#endif
218
219/** @def IN_SUP_R0
220 * Used to indicate whether we're inside the same link module as the Ring-0
221 * Support Library or not.
222 */
223/** @def SUPR0DECL(type)
224 * Support library export or import declaration.
225 * @param type The return type of the function declaration.
226 */
227#if defined(IN_SUP_R0) || defined(IN_SUP_R3) || defined(IN_SUP_RC)
228# define SUPDECL(type) DECLEXPORT(type) VBOXCALL
229#else
230# define SUPDECL(type) DECLIMPORT(type) VBOXCALL
231#endif
232
233
234
235/** @def IN_USBLIB
236 * Used to indicate whether we're inside the same link module as the USBLib.
237 */
238/** @def USBLIB_DECL
239 * USBLIB export or import declaration.
240 * @param type The return type of the function declaration.
241 */
242#ifdef IN_RING0
243# define USBLIB_DECL(type) type VBOXCALL
244#elif defined(IN_USBLIB)
245# define USBLIB_DECL(type) DECLEXPORT(type) VBOXCALL
246#else
247# define USBLIB_DECL(type) DECLIMPORT(type) VBOXCALL
248#endif
249
250
251
252/** @def IN_VMM_STATIC
253 * Used to indicate that the virtual machine monitor is built or used as a
254 * static library.
255 */
256/** @def IN_VMM_R3
257 * Used to indicate whether we're inside the same link module as the ring 3 part of the
258 * virtual machine monitor or not.
259 */
260/** @def VMMR3DECL
261 * Ring-3 VMM export or import declaration.
262 * @param type The return type of the function declaration.
263 */
264#ifdef IN_VMM_R3
265# ifdef IN_VMM_STATIC
266# define VMMR3DECL(type) DECLHIDDEN(type) VBOXCALL
267# else
268# define VMMR3DECL(type) DECLEXPORT(type) VBOXCALL
269# endif
270#elif defined(IN_RING3)
271# ifdef IN_VMM_STATIC
272# define VMMR3DECL(type) DECLHIDDEN(type) VBOXCALL
273# else
274# define VMMR3DECL(type) DECLIMPORT(type) VBOXCALL
275# endif
276#else
277# define VMMR3DECL(type) DECL_INVALID(type)
278#endif
279
280/** @def IN_VMM_R0
281 * Used to indicate whether we're inside the same link module as the ring-0 part
282 * of the virtual machine monitor or not.
283 */
284/** @def VMMR0DECL
285 * Ring-0 VMM export or import declaration.
286 * @param type The return type of the function declaration.
287 */
288#ifdef IN_VMM_R0
289# define VMMR0DECL(type) DECLEXPORT(type) VBOXCALL
290#elif defined(IN_RING0)
291# define VMMR0DECL(type) DECLIMPORT(type) VBOXCALL
292#else
293# define VMMR0DECL(type) DECL_INVALID(type)
294#endif
295
296/** @def IN_VMM_RC
297 * Used to indicate whether we're inside the same link module as the raw-mode
298 * context part of the virtual machine monitor or not.
299 */
300/** @def VMMRCDECL
301 * Raw-mode context VMM export or import declaration.
302 * @param type The return type of the function declaration.
303 */
304#ifdef IN_VMM_RC
305# define VMMRCDECL(type) DECLEXPORT(type) VBOXCALL
306#elif defined(IN_RC)
307# define VMMRCDECL(type) DECLIMPORT(type) VBOXCALL
308#else
309# define VMMRCDECL(type) DECL_INVALID(type)
310#endif
311
312/** @def VMMRZDECL
313 * Ring-0 and Raw-mode context VMM export or import declaration.
314 * @param type The return type of the function declaration.
315 */
316#if defined(IN_VMM_R0) || defined(IN_VMM_RC)
317# define VMMRZDECL(type) DECLEXPORT(type) VBOXCALL
318#elif defined(IN_RING0) || defined(IN_RZ)
319# define VMMRZDECL(type) DECLIMPORT(type) VBOXCALL
320#else
321# define VMMRZDECL(type) DECL_INVALID(type)
322#endif
323
324/** @def VMMDECL
325 * VMM export or import declaration.
326 * @param type The return type of the function declaration.
327 */
328#ifdef IN_VMM_STATIC
329# define VMMDECL(type) DECLHIDDEN(type) VBOXCALL
330#elif defined(IN_VMM_R3) || defined(IN_VMM_R0) || defined(IN_VMM_RC)
331# define VMMDECL(type) DECLEXPORT(type) VBOXCALL
332#else
333# define VMMDECL(type) DECLIMPORT(type) VBOXCALL
334#endif
335
336/** @def VMM_INT_DECL
337 * VMM internal function.
338 * @param type The return type of the function declaration.
339 */
340#if defined(IN_VMM_R3) || defined(IN_VMM_R0) || defined(IN_VMM_RC)
341# define VMM_INT_DECL(type) DECLHIDDEN(type) VBOXCALL
342#else
343# define VMM_INT_DECL(type) DECL_INVALID(type)
344#endif
345
346/** @def VMMR3_INT_DECL
347 * VMM internal function, ring-3.
348 * @param type The return type of the function declaration.
349 */
350#ifdef IN_VMM_R3
351# define VMMR3_INT_DECL(type) DECLHIDDEN(type) VBOXCALL
352#else
353# define VMMR3_INT_DECL(type) DECL_INVALID(type)
354#endif
355
356/** @def VMMR0_INT_DECL
357 * VMM internal function, ring-0.
358 * @param type The return type of the function declaration.
359 */
360#ifdef IN_VMM_R0
361# define VMMR0_INT_DECL(type) DECLHIDDEN(type) VBOXCALL
362#else
363# define VMMR0_INT_DECL(type) DECL_INVALID(type)
364#endif
365
366/** @def VMMRC_INT_DECL
367 * VMM internal function, raw-mode context.
368 * @param type The return type of the function declaration.
369 */
370#ifdef IN_VMM_RC
371# define VMMRC_INT_DECL(type) DECLHIDDEN(type) VBOXCALL
372#else
373# define VMMRC_INT_DECL(type) DECL_INVALID(type)
374#endif
375
376/** @def VMMRZ_INT_DECL
377 * VMM internal function, ring-0 + raw-mode context.
378 * @param type The return type of the function declaration.
379 */
380#ifdef IN_VMM_RZ
381# define VMMRZ_INT_DECL(type) DECLHIDDEN(type) VBOXCALL
382#else
383# define VMMRZ_INT_DECL(type) DECL_INVALID(type)
384#endif
385
386
387
388/** @def IN_VBOXDDU
389 * Used to indicate whether we're inside the VBoxDDU shared object.
390 */
391/** @def VBOXDDU_DECL(type)
392 * VBoxDDU export or import (ring-3).
393 * @param type The return type of the function declaration.
394 */
395#ifdef IN_VBOXDDU
396# define VBOXDDU_DECL(type) DECLEXPORT(type) VBOXCALL
397#else
398# define VBOXDDU_DECL(type) DECLIMPORT(type) VBOXCALL
399#endif
400
401
402#endif
403
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use