VirtualBox

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

Last change on this file since 12653 was 12653, checked in by vboxsync, 16 years ago

various files: doxygen fixes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 39.7 KB
Line 
1/** @file
2 * VirtualBox - Common C and C++ definition.
3 */
4
5/*
6 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
26 * Clara, CA 95054 USA or visit http://www.sun.com if you need
27 * additional information or have any questions.
28 */
29
30#ifndef ___VBox_cdefs_h
31#define ___VBox_cdefs_h
32
33#include <iprt/cdefs.h>
34
35
36/** @def VBOX_WITH_STATISTICS
37 * When defined all statistics will be included in the build.
38 * This is enabled by default in all debug builds.
39 */
40#ifndef VBOX_WITH_STATISTICS
41# ifdef DEBUG
42# define VBOX_WITH_STATISTICS
43# endif
44#endif
45
46/** @def VBOX_STRICT
47 * Alias for RT_STRICT.
48 */
49#ifdef RT_STRICT
50# ifndef VBOX_STRICT
51# define VBOX_STRICT
52# endif
53#endif
54
55
56/*
57 * Shut up DOXYGEN warnings and guide it properly thru the code.
58 */
59#ifdef __DOXYGEN__
60#define VBOX_WITH_STATISTICS
61#define VBOX_STRICT
62#define IN_CFGM_GC
63#define IN_CFGM_R3
64#define IN_CPUM_GC
65#define IN_CPUM_R0
66#define IN_CPUM_R3
67#define IN_CSAM_R0
68#define IN_CSAM_R3
69#define IN_CSAM_GC
70#define IN_DBGF_R0
71#define IN_DBGF_R3
72#define IN_DBGF_GC
73#define IN_DIS_GC
74#define IN_DIS_R0
75#define IN_DIS_R3
76#define IN_EM_GC
77#define IN_EM_R3
78#define IN_EM_R0
79#define IN_HWACCM_R0
80#define IN_HWACCM_R3
81#define IN_HWACCM_GC
82#define IN_IDE_R3
83#define IN_INTNET_R0
84#define IN_INTNET_R3
85#define IN_IOM_GC
86#define IN_IOM_R3
87#define IN_IOM_R0
88#define IN_MM_GC
89#define IN_MM_R0
90#define IN_MM_R3
91#define IN_PATM_R0
92#define IN_PATM_R3
93#define IN_PATM_GC
94#define IN_PDM_GC
95#define IN_PDM_R3
96#define IN_PGM_GC
97#define IN_PGM_R0
98#define IN_PGM_R3
99#define IN_REM_GC
100#define IN_REM_R0
101#define IN_REM_R3
102#define IN_SELM_GC
103#define IN_SELM_R0
104#define IN_SELM_R3
105#define IN_SSM_R3
106#define IN_STAM_GC
107#define IN_STAM_R0
108#define IN_STAM_R3
109#define IN_SUP_R0
110#define IN_SUP_R3
111#define IN_SUP_GC
112#define IN_TM_GC
113#define IN_TM_R0
114#define IN_TM_R3
115#define IN_TRPM_GC
116#define IN_TRPM_R0
117#define IN_TRPM_R3
118#define IN_USB_GC
119#define IN_USB_R0
120#define IN_USB_R3
121#define IN_USBLIB
122#define IN_VBOXDDU
123#define IN_VGADEVICE_GC
124#define IN_VGADEVICE_R3
125#define IN_VHHD_R3
126#define IN_VM_GC
127#define IN_VM_R0
128#define IN_VM_R3
129#define IN_VMM_GC
130#define IN_VMM_R0
131#define IN_VMM_R3
132/** @todo fixme */
133#endif
134
135
136
137
138/** @def VBOXCALL
139 * The standard calling convention for VBOX interfaces.
140 */
141#define VBOXCALL RTCALL
142
143
144
145/** @def IN_VM_R3
146 * Used to indicate whether we're inside the same link module as the ring 3 part of the
147 * virtual machine (the module) or not.
148 */
149/** @def VMR3DECL
150 * Ring 3 VM export or import declaration.
151 * @param type The return type of the function declaration.
152 */
153#ifdef IN_VM_R3
154# define VMR3DECL(type) DECLEXPORT(type) VBOXCALL
155#else
156# define VMR3DECL(type) DECLIMPORT(type) VBOXCALL
157#endif
158
159/** @def IN_VM_R0
160 * Used to indicate whether we're inside the same link module as the ring 0
161 * part of the virtual machine (the module) or not.
162 */
163/** @def VMR0DECL
164 * Ring 0 VM export or import declaration.
165 * @param type The return type of the function declaration.
166 */
167#ifdef IN_VM_R0
168# define VMR0DECL(type) DECLEXPORT(type) VBOXCALL
169#else
170# define VMR0DECL(type) DECLIMPORT(type) VBOXCALL
171#endif
172
173/** @def IN_VM_GC
174 * Used to indicate whether we're inside the same link module as the guest context
175 * part of the virtual machine (the module) or not.
176 */
177/** @def VMGCDECL
178 * Guest context VM export or import declaration.
179 * @param type The return type of the function declaration.
180 */
181#ifdef IN_VM_GC
182# define VMGCDECL(type) DECLEXPORT(type) VBOXCALL
183#else
184# define VMGCDECL(type) DECLIMPORT(type) VBOXCALL
185#endif
186
187/** @def VMDECL
188 * VM export or import declaration.
189 * @param type The return type of the function declaration.
190 */
191#if defined(IN_VM_R3) || defined(IN_VM_R0) || defined(IN_VM_GC)
192# define VMDECL(type) DECLEXPORT(type) VBOXCALL
193#else
194# define VMDECL(type) DECLIMPORT(type) VBOXCALL
195#endif
196
197
198/** @def IN_VMM_R3
199 * Used to indicate whether we're inside the same link module as the ring 3 part of the
200 * virtual machine monitor or not.
201 */
202/** @def VMMR3DECL
203 * Ring 3 VMM export or import declaration.
204 * @param type The return type of the function declaration.
205 */
206#ifdef IN_VMM_R3
207# define VMMR3DECL(type) DECLEXPORT(type) VBOXCALL
208#else
209# define VMMR3DECL(type) DECLIMPORT(type) VBOXCALL
210#endif
211
212/** @def IN_VMM_R0
213 * Used to indicate whether we're inside the same link module as the ring 0 part of the
214 * virtual machine monitor or not.
215 */
216/** @def VMMR0DECL
217 * Ring 0 VMM export or import declaration.
218 * @param type The return type of the function declaration.
219 */
220#ifdef IN_VMM_R0
221# define VMMR0DECL(type) DECLEXPORT(type) VBOXCALL
222#else
223# define VMMR0DECL(type) DECLIMPORT(type) VBOXCALL
224#endif
225
226/** @def IN_VMM_GC
227 * Used to indicate whether we're inside the same link module as the guest context
228 * part of the virtual machine monitor or not.
229 */
230/** @def VMMGCDECL
231 * Guest context VMM export or import declaration.
232 * @param type The return type of the function declaration.
233 */
234#ifdef IN_VMM_GC
235# define VMMGCDECL(type) DECLEXPORT(type) VBOXCALL
236#else
237# define VMMGCDECL(type) DECLIMPORT(type) VBOXCALL
238#endif
239
240/** @def VMMDECL
241 * VMM export or import declaration.
242 * @param type The return type of the function declaration.
243 */
244#if defined(IN_VMM_R3) || defined(IN_VMM_R0) || defined(IN_VMM_GC)
245# define VMMDECL(type) DECLEXPORT(type) VBOXCALL
246#else
247# define VMMDECL(type) DECLIMPORT(type) VBOXCALL
248#endif
249
250
251/** @def IN_DIS_R3
252 * Used to indicate whether we're inside the same link module as the
253 * Ring-3 disassembler or not.
254 */
255/** @def DISR3DECL(type)
256 * Disassembly export or import declaration.
257 * @param type The return type of the function declaration.
258 */
259#ifdef IN_DIS_R3
260# define DISR3DECL(type) DECLEXPORT(type) VBOXCALL
261#else
262# define DISR3DECL(type) DECLIMPORT(type) VBOXCALL
263#endif
264
265/** @def IN_DIS_R0
266 * Used to indicate whether we're inside the same link module as the
267 * Ring-0 disassembler or not.
268 */
269/** @def DISR0DECL(type)
270 * Disassembly export or import declaration.
271 * @param type The return type of the function declaration.
272 */
273#ifdef IN_DIS_R0
274# define DISR0DECL(type) DECLEXPORT(type) VBOXCALL
275#else
276# define DISR0DECL(type) DECLIMPORT(type) VBOXCALL
277#endif
278
279/** @def IN_DIS_GC
280 * Used to indicate whether we're inside the same link module as the
281 * GC disassembler or not.
282 */
283/** @def DISGCDECL(type)
284 * Disassembly export or import declaration.
285 * @param type The return type of the function declaration.
286 */
287#ifdef IN_DIS_GC
288# define DISGCDECL(type) DECLEXPORT(type) VBOXCALL
289#else
290# define DISGCDECL(type) DECLIMPORT(type) VBOXCALL
291#endif
292
293/** @def DISDECL(type)
294 * Disassembly export or import declaration.
295 * @param type The return type of the function declaration.
296 */
297#if defined(IN_DIS_R3) ||defined(IN_DIS_R0) || defined(IN_DIS_GC)
298# define DISDECL(type) DECLEXPORT(type) VBOXCALL
299#else
300# define DISDECL(type) DECLIMPORT(type) VBOXCALL
301#endif
302
303
304/** @def IN_SUP_R3
305 * Used to indicate whether we're inside the same link module as the Ring 3 Support Library or not.
306 */
307/** @def SUPR3DECL(type)
308 * Support library export or import declaration.
309 * @param type The return type of the function declaration.
310 */
311#ifdef IN_SUP_R3
312# define SUPR3DECL(type) DECLEXPORT(type) VBOXCALL
313#else
314# define SUPR3DECL(type) DECLIMPORT(type) VBOXCALL
315#endif
316
317/** @def IN_SUP_R0
318 * Used to indicate whether we're inside the same link module as the Ring 0 Support Library or not.
319 */
320/** @def SUPR0DECL(type)
321 * Support library export or import declaration.
322 * @param type The return type of the function declaration.
323 */
324#ifdef IN_SUP_R0
325# ifdef IN_SUP_STATIC
326# define SUPR0DECL(type) DECLHIDDEN(type) VBOXCALL
327# else
328# define SUPR0DECL(type) DECLEXPORT(type) VBOXCALL
329# endif
330#else
331# ifdef IN_SUP_STATIC
332# define SUPR0DECL(type) DECLHIDDEN(type) VBOXCALL
333# else
334# define SUPR0DECL(type) DECLIMPORT(type) VBOXCALL
335# endif
336#endif
337
338/** @def IN_SUP_GC
339 * Used to indicate whether we're inside the same link module as the GC Support Library or not.
340 */
341/** @def SUPGCDECL(type)
342 * Support library export or import declaration.
343 * @param type The return type of the function declaration.
344 */
345#ifdef IN_SUP_GC
346# define SUPGCDECL(type) DECLEXPORT(type) VBOXCALL
347#else
348# define SUPGCDECL(type) DECLIMPORT(type) VBOXCALL
349#endif
350
351/** @def IN_SUP_R0
352 * Used to indicate whether we're inside the same link module as the Ring 0 Support Library or not.
353 */
354/** @def SUPR0DECL(type)
355 * Support library export or import declaration.
356 * @param type The return type of the function declaration.
357 */
358#if defined(IN_SUP_R0) || defined(IN_SUP_R3) || defined(IN_SUP_GC)
359# define SUPDECL(type) DECLEXPORT(type) VBOXCALL
360#else
361# define SUPDECL(type) DECLIMPORT(type) VBOXCALL
362#endif
363
364
365
366
367/** @def IN_PDM_R3
368 * Used to indicate whether we're inside the same link module as the Ring 3
369 * Pluggable Device Manager.
370 */
371/** @def PDMR3DECL(type)
372 * Pluggable Device Manager export or import declaration.
373 * @param type The return type of the function declaration.
374 */
375#ifdef IN_PDM_R3
376# define PDMR3DECL(type) DECLEXPORT(type) VBOXCALL
377#else
378# define PDMR3DECL(type) DECLIMPORT(type) VBOXCALL
379#endif
380
381/** @def IN_PDM_GC
382 * Used to indicate whether we're inside the same link module as the GC
383 * Pluggable Device Manager.
384 */
385/** @def PDMGCDECL(type)
386 * Pluggable Device Manager export or import declaration.
387 * @param type The return type of the function declaration.
388 */
389#ifdef IN_PDM_GC
390# define PDMGCDECL(type) DECLEXPORT(type) VBOXCALL
391#else
392# define PDMGCDECL(type) DECLIMPORT(type) VBOXCALL
393#endif
394
395/** @def PDMDECL(type)
396 * Pluggable Device Manager export or import declaration.
397 * Functions declared using this macro exists in all contexts.
398 * @param type The return type of the function declaration.
399 */
400#if defined(IN_PDM_R3) || defined(IN_PDM_GC) || defined(IN_PDM_R0)
401# define PDMDECL(type) DECLEXPORT(type) VBOXCALL
402#else
403# define PDMDECL(type) DECLIMPORT(type) VBOXCALL
404#endif
405
406
407
408
409/** @def IN_CFGM_R3
410 * Used to indicate whether we're inside the same link module as the Ring 3
411 * Configuration Manager.
412 */
413/** @def CFGMR3DECL(type)
414 * Configuration Manager export or import declaration.
415 * @param type The return type of the function declaration.
416 */
417#ifdef IN_CFGM_R3
418# define CFGMR3DECL(type) DECLEXPORT(type) VBOXCALL
419#else
420# define CFGMR3DECL(type) DECLIMPORT(type) VBOXCALL
421#endif
422
423/** @def IN_CFGM_GC
424 * Used to indicate whether we're inside the same link module as the GC
425 * Configuration Manager.
426 */
427/** @def CFGMGCDECL(type)
428 * Configuration Manager export or import declaration.
429 * @param type The return type of the function declaration.
430 */
431#ifdef IN_CFGM_GC
432# define CFGMGCDECL(type) DECLEXPORT(type) VBOXCALL
433#else
434# define CFGMGCDECL(type) DECLIMPORT(type) VBOXCALL
435#endif
436
437
438/** @def IN_CPUM_R0
439 * Used to indicate whether we're inside the same link module as
440 * the HC Ring-0 CPU Monitor(/Manager).
441 */
442/** @def CPUMR0DECL(type)
443 * CPU Monitor(/Manager) HC Ring-0 export or import declaration.
444 * @param type The return type of the function declaration.
445 */
446#ifdef IN_CPUM_R0
447# define CPUMR0DECL(type) DECLEXPORT(type) VBOXCALL
448#else
449# define CPUMR0DECL(type) DECLIMPORT(type) VBOXCALL
450#endif
451
452/** @def IN_CPUM_R3
453 * Used to indicate whether we're inside the same link module as
454 * the HC Ring-3 CPU Monitor(/Manager).
455 */
456/** @def CPUMR3DECL(type)
457 * CPU Monitor(/Manager) HC Ring-3 export or import declaration.
458 * @param type The return type of the function declaration.
459 */
460#ifdef IN_CPUM_R3
461# define CPUMR3DECL(type) DECLEXPORT(type) VBOXCALL
462#else
463# define CPUMR3DECL(type) DECLIMPORT(type) VBOXCALL
464#endif
465
466/** @def IN_CPUM_GC
467 * Used to indicate whether we're inside the same link module as
468 * the GC CPU Monitor(/Manager).
469 */
470/** @def CPUMGCDECL(type)
471 * CPU Monitor(/Manager) HC Ring-3 export or import declaration.
472 * @param type The return type of the function declaration.
473 */
474#ifdef IN_CPUM_GC
475# define CPUMGCDECL(type) DECLEXPORT(type) VBOXCALL
476#else
477# define CPUMGCDECL(type) DECLIMPORT(type) VBOXCALL
478#endif
479
480/** @def CPUMDECL(type)
481 * CPU Monitor(/Manager) export or import declaration.
482 * Functions declared using this macro exists in all contexts.
483 * @param type The return type of the function declaration.
484 */
485#if defined(IN_CPUM_R3) || defined(IN_CPUM_GC) || defined(IN_CPUM_R0)
486# define CPUMDECL(type) DECLEXPORT(type) VBOXCALL
487#else
488# define CPUMDECL(type) DECLIMPORT(type) VBOXCALL
489#endif
490
491
492
493/** @def IN_PATM_R0
494 * Used to indicate whether we're inside the same link module as
495 * the HC Ring-0 CPU Monitor(/Manager).
496 */
497/** @def PATMR0DECL(type)
498 * Patch Manager HC Ring-0 export or import declaration.
499 * @param type The return type of the function declaration.
500 */
501#ifdef IN_PATM_R0
502# define PATMR0DECL(type) DECLEXPORT(type) VBOXCALL
503#else
504# define PATMR0DECL(type) DECLIMPORT(type) VBOXCALL
505#endif
506
507/** @def IN_PATM_R3
508 * Used to indicate whether we're inside the same link module as
509 * the HC Ring-3 CPU Monitor(/Manager).
510 */
511/** @def PATMR3DECL(type)
512 * Patch Manager HC Ring-3 export or import declaration.
513 * @param type The return type of the function declaration.
514 */
515#ifdef IN_PATM_R3
516# define PATMR3DECL(type) DECLEXPORT(type) VBOXCALL
517#else
518# define PATMR3DECL(type) DECLIMPORT(type) VBOXCALL
519#endif
520
521/** @def IN_PATM_GC
522 * Used to indicate whether we're inside the same link module as
523 * the GC Patch Manager.
524 */
525/** @def PATMGCDECL(type)
526 * Patch Manager HC Ring-3 export or import declaration.
527 * @param type The return type of the function declaration.
528 */
529#ifdef IN_PATM_GC
530# define PATMGCDECL(type) DECLEXPORT(type) VBOXCALL
531#else
532# define PATMGCDECL(type) DECLIMPORT(type) VBOXCALL
533#endif
534
535/** @def PATMDECL(type)
536 * Patch Manager all contexts export or import declaration.
537 * @param type The return type of the function declaration.
538 */
539#if defined(IN_PATM_R3) || defined(IN_PATM_R0) || defined(IN_PATM_GC)
540# define PATMDECL(type) DECLEXPORT(type) VBOXCALL
541#else
542# define PATMDECL(type) DECLIMPORT(type) VBOXCALL
543#endif
544
545
546
547/** @def IN_CSAM_R0
548 * Used to indicate whether we're inside the same link module as
549 * the HC Ring-0 CPU Monitor(/Manager).
550 */
551/** @def CSAMR0DECL(type)
552 * Code Scanning and Analysis Manager HC Ring-0 export or import declaration.
553 * @param type The return type of the function declaration.
554 */
555#ifdef IN_CSAM_R0
556# define CSAMR0DECL(type) DECLEXPORT(type) VBOXCALL
557#else
558# define CSAMR0DECL(type) DECLIMPORT(type) VBOXCALL
559#endif
560
561/** @def IN_CSAM_R3
562 * Used to indicate whether we're inside the same link module as
563 * the HC Ring-3 CPU Monitor(/Manager).
564 */
565/** @def CSAMR3DECL(type)
566 * Code Scanning and Analysis Manager HC Ring-3 export or import declaration.
567 * @param type The return type of the function declaration.
568 */
569#ifdef IN_CSAM_R3
570# define CSAMR3DECL(type) DECLEXPORT(type) VBOXCALL
571#else
572# define CSAMR3DECL(type) DECLIMPORT(type) VBOXCALL
573#endif
574
575/** @def IN_CSAM_GC
576 * Used to indicate whether we're inside the same link module as
577 * the GC Code Scanning and Analysis Manager.
578 */
579/** @def CSAMGCDECL(type)
580 * Code Scanning and Analysis Manager HC Ring-3 export or import declaration.
581 * @param type The return type of the function declaration.
582 */
583#ifdef IN_CSAM_GC
584# define CSAMGCDECL(type) DECLEXPORT(type) VBOXCALL
585#else
586# define CSAMGCDECL(type) DECLIMPORT(type) VBOXCALL
587#endif
588
589/** @def CSAMDECL(type)
590 * Code Scanning and Analysis Manager export or import declaration.
591 * Functions declared using this macro exists in all contexts.
592 * @param type The return type of the function declaration.
593 */
594#if defined(IN_CSAM_R3) || defined(IN_CSAM_GC) || defined(IN_CSAM_R0)
595# define CSAMDECL(type) DECLEXPORT(type) VBOXCALL
596#else
597# define CSAMDECL(type) DECLIMPORT(type) VBOXCALL
598#endif
599
600
601
602/** @def IN_MM_R0
603 * Used to indicate whether we're inside the same link module as
604 * the HC Ring-0 Memory Monitor(/Manager).
605 */
606/** @def MMR0DECL(type)
607 * Memory Monitor(/Manager) HC Ring-0 export or import declaration.
608 * @param type The return type of the function declaration.
609 */
610#ifdef IN_MM_R0
611# define MMR0DECL(type) DECLEXPORT(type) VBOXCALL
612#else
613# define MMR0DECL(type) DECLIMPORT(type) VBOXCALL
614#endif
615
616/** @def IN_MM_R3
617 * Used to indicate whether we're inside the same link module as
618 * the HC Ring-3 Memory Monitor(/Manager).
619 */
620/** @def MMR3DECL(type)
621 * Memory Monitor(/Manager) HC Ring-3 export or import declaration.
622 * @param type The return type of the function declaration.
623 */
624#ifdef IN_MM_R3
625# define MMR3DECL(type) DECLEXPORT(type) VBOXCALL
626#else
627# define MMR3DECL(type) DECLIMPORT(type) VBOXCALL
628#endif
629
630/** @def IN_MM_GC
631 * Used to indicate whether we're inside the same link module as
632 * the GC Memory Monitor(/Manager).
633 */
634/** @def MMGCDECL(type)
635 * Memory Monitor(/Manager) HC Ring-3 export or import declaration.
636 * @param type The return type of the function declaration.
637 */
638#ifdef IN_MM_GC
639# define MMGCDECL(type) DECLEXPORT(type) VBOXCALL
640#else
641# define MMGCDECL(type) DECLIMPORT(type) VBOXCALL
642#endif
643
644/** @def MMDECL(type)
645 * Memory Monitor(/Manager) export or import declaration.
646 * Functions declared using this macro exists in all contexts.
647 * @param type The return type of the function declaration.
648 */
649#if defined(IN_MM_R3) || defined(IN_MM_GC) || defined(IN_MM_R0)
650# define MMDECL(type) DECLEXPORT(type) VBOXCALL
651#else
652# define MMDECL(type) DECLIMPORT(type) VBOXCALL
653#endif
654
655
656
657
658/** @def IN_SELM_R0
659 * Used to indicate whether we're inside the same link module as
660 * the HC Ring-0 Selector Monitor(/Manager).
661 */
662/** @def SELMR0DECL(type)
663 * Selector Monitor(/Manager) HC Ring-0 export or import declaration.
664 * @param type The return type of the function declaration.
665 */
666#ifdef IN_SELM_R0
667# define SELMR0DECL(type) DECLEXPORT(type) VBOXCALL
668#else
669# define SELMR0DECL(type) DECLIMPORT(type) VBOXCALL
670#endif
671
672/** @def IN_SELM_R3
673 * Used to indicate whether we're inside the same link module as
674 * the HC Ring-3 Selector Monitor(/Manager).
675 */
676/** @def SELMR3DECL(type)
677 * Selector Monitor(/Manager) HC Ring-3 export or import declaration.
678 * @param type The return type of the function declaration.
679 */
680#ifdef IN_SELM_R3
681# define SELMR3DECL(type) DECLEXPORT(type) VBOXCALL
682#else
683# define SELMR3DECL(type) DECLIMPORT(type) VBOXCALL
684#endif
685
686/** @def IN_SELM_GC
687 * Used to indicate whether we're inside the same link module as
688 * the GC Selector Monitor(/Manager).
689 */
690/** @def SELMGCDECL(type)
691 * Selector Monitor(/Manager) HC Ring-3 export or import declaration.
692 * @param type The return type of the function declaration.
693 */
694#ifdef IN_SELM_GC
695# define SELMGCDECL(type) DECLEXPORT(type) VBOXCALL
696#else
697# define SELMGCDECL(type) DECLIMPORT(type) VBOXCALL
698#endif
699
700/** @def SELMDECL(type)
701 * Selector Monitor(/Manager) export or import declaration.
702 * Functions declared using this macro exists in all contexts.
703 * @param type The return type of the function declaration.
704 */
705#if defined(IN_SELM_R3) || defined(IN_SELM_GC) || defined(IN_SELM_R0)
706# define SELMDECL(type) DECLEXPORT(type) VBOXCALL
707#else
708# define SELMDECL(type) DECLIMPORT(type) VBOXCALL
709#endif
710
711
712
713/** @def IN_HWACCM_R0
714 * Used to indicate whether we're inside the same link module as
715 * the HC Ring-0 VMX Monitor(/Manager).
716 */
717/** @def HWACCMR0DECL(type)
718 * Selector Monitor(/Manager) HC Ring-0 export or import declaration.
719 * @param type The return type of the function declaration.
720 */
721#ifdef IN_HWACCM_R0
722# define HWACCMR0DECL(type) DECLEXPORT(type) VBOXCALL
723#else
724# define HWACCMR0DECL(type) DECLIMPORT(type) VBOXCALL
725#endif
726
727/** @def IN_HWACCM_R3
728 * Used to indicate whether we're inside the same link module as
729 * the HC Ring-3 VMX Monitor(/Manager).
730 */
731/** @def HWACCMR3DECL(type)
732 * Selector Monitor(/Manager) HC Ring-3 export or import declaration.
733 * @param type The return type of the function declaration.
734 */
735#ifdef IN_HWACCM_R3
736# define HWACCMR3DECL(type) DECLEXPORT(type) VBOXCALL
737#else
738# define HWACCMR3DECL(type) DECLIMPORT(type) VBOXCALL
739#endif
740
741/** @def IN_HWACCM_GC
742 * Used to indicate whether we're inside the same link module as
743 * the GC VMX Monitor(/Manager).
744 */
745/** @def HWACCMGCDECL(type)
746 * Selector Monitor(/Manager) HC Ring-3 export or import declaration.
747 * @param type The return type of the function declaration.
748 */
749#ifdef IN_HWACCM_GC
750# define HWACCMGCDECL(type) DECLEXPORT(type) VBOXCALL
751#else
752# define HWACCMGCDECL(type) DECLIMPORT(type) VBOXCALL
753#endif
754
755/** @def HWACCMDECL(type)
756 * VMX Monitor(/Manager) export or import declaration.
757 * Functions declared using this macro exists in all contexts.
758 * @param type The return type of the function declaration.
759 */
760#if defined(IN_HWACCM_R3) || defined(IN_HWACCM_GC) || defined(IN_HWACCM_R0)
761# define HWACCMDECL(type) DECLEXPORT(type) VBOXCALL
762#else
763# define HWACCMDECL(type) DECLIMPORT(type) VBOXCALL
764#endif
765
766
767
768/** @def IN_TM_R0
769 * Used to indicate whether we're inside the same link module as
770 * the HC Ring-0 Time Manager.
771 */
772/** @def TMR0DECL(type)
773 * Time Manager HC Ring-0 export or import declaration.
774 * @param type The return type of the function declaration.
775 */
776#ifdef IN_TM_R0
777# define TMR0DECL(type) DECLEXPORT(type) VBOXCALL
778#else
779# define TMR0DECL(type) DECLIMPORT(type) VBOXCALL
780#endif
781
782/** @def IN_TM_R3
783 * Used to indicate whether we're inside the same link module as
784 * the HC Ring-3 Time Manager.
785 */
786/** @def TMR3DECL(type)
787 * Time Manager HC Ring-3 export or import declaration.
788 * @param type The return type of the function declaration.
789 */
790#ifdef IN_TM_R3
791# define TMR3DECL(type) DECLEXPORT(type) VBOXCALL
792#else
793# define TMR3DECL(type) DECLIMPORT(type) VBOXCALL
794#endif
795
796/** @def IN_TM_GC
797 * Used to indicate whether we're inside the same link module as
798 * the GC Time Manager.
799 */
800/** @def TMGCDECL(type)
801 * Time Manager HC Ring-3 export or import declaration.
802 * @param type The return type of the function declaration.
803 */
804#ifdef IN_TM_GC
805# define TMGCDECL(type) DECLEXPORT(type) VBOXCALL
806#else
807# define TMGCDECL(type) DECLIMPORT(type) VBOXCALL
808#endif
809
810/** @def TMDECL(type)
811 * Time Manager export or import declaration.
812 * Functions declared using this macro exists in all contexts.
813 * @param type The return type of the function declaration.
814 */
815#if defined(IN_TM_R3) || defined(IN_TM_GC) || defined(IN_TM_R0)
816# define TMDECL(type) DECLEXPORT(type) VBOXCALL
817#else
818# define TMDECL(type) DECLIMPORT(type) VBOXCALL
819#endif
820
821
822
823
824/** @def IN_TRPM_R0
825 * Used to indicate whether we're inside the same link module as
826 * the HC Ring-0 Trap Monitor.
827 */
828/** @def TRPMR0DECL(type)
829 * Trap Monitor HC Ring-0 export or import declaration.
830 * @param type The return type of the function declaration.
831 */
832#ifdef IN_TRPM_R0
833# define TRPMR0DECL(type) DECLEXPORT(type) VBOXCALL
834#else
835# define TRPMR0DECL(type) DECLIMPORT(type) VBOXCALL
836#endif
837
838/** @def IN_TRPM_R3
839 * Used to indicate whether we're inside the same link module as
840 * the HC Ring-3 Trap Monitor.
841 */
842/** @def TRPMR3DECL(type)
843 * Trap Monitor HC Ring-3 export or import declaration.
844 * @param type The return type of the function declaration.
845 */
846#ifdef IN_TRPM_R3
847# define TRPMR3DECL(type) DECLEXPORT(type) VBOXCALL
848#else
849# define TRPMR3DECL(type) DECLIMPORT(type) VBOXCALL
850#endif
851
852/** @def IN_TRPM_GC
853 * Used to indicate whether we're inside the same link module as
854 * the GC Trap Monitor.
855 */
856/** @def TRPMGCDECL(type)
857 * Trap Monitor GC export or import declaration.
858 * @param type The return type of the function declaration.
859 */
860#ifdef IN_TRPM_GC
861# define TRPMGCDECL(type) DECLEXPORT(type) VBOXCALL
862#else
863# define TRPMGCDECL(type) DECLIMPORT(type) VBOXCALL
864#endif
865
866/** @def TRPMDECL(type)
867 * Trap Monitor export or import declaration.
868 * Functions declared using this macro exists in all contexts.
869 * @param type The return type of the function declaration.
870 */
871#if defined(IN_TRPM_R3) || defined(IN_TRPM_GC) || defined(IN_TRPM_R0)
872# define TRPMDECL(type) DECLEXPORT(type) VBOXCALL
873#else
874# define TRPMDECL(type) DECLIMPORT(type) VBOXCALL
875#endif
876
877
878
879
880/** @def IN_USB_R0
881 * Used to indicate whether we're inside the same link module as
882 * the HC Ring-0 USB device / service.
883 */
884/** @def USBR0DECL(type)
885 * USB device / service HC Ring-0 export or import declaration.
886 * @param type The return type of the function declaration.
887 */
888#ifdef IN_USB_R0
889# define USBR0DECL(type) DECLEXPORT(type) VBOXCALL
890#else
891# define USBR0DECL(type) DECLIMPORT(type) VBOXCALL
892#endif
893
894/** @def IN_USB_R3
895 * Used to indicate whether we're inside the same link module as
896 * the HC Ring-3 USB device / service.
897 */
898/** @def USBR3DECL(type)
899 * USB device / services HC Ring-3 export or import declaration.
900 * @param type The return type of the function declaration.
901 */
902#ifdef IN_USB_R3
903# define USBR3DECL(type) DECLEXPORT(type) VBOXCALL
904#else
905# define USBR3DECL(type) DECLIMPORT(type) VBOXCALL
906#endif
907
908/** @def IN_USB_GC
909 * Used to indicate whether we're inside the same link module as
910 * the GC USB device.
911 */
912/** @def USBGCDECL(type)
913 * USB device GC export or import declaration.
914 * @param type The return type of the function declaration.
915 */
916#ifdef IN_USB_GC
917# define USBGCDECL(type) DECLEXPORT(type) VBOXCALL
918#else
919# define USBGCDECL(type) DECLIMPORT(type) VBOXCALL
920#endif
921
922/** @def USBDECL(type)
923 * Trap Monitor export or import declaration.
924 * Functions declared using this macro exists in all contexts.
925 * @param type The return type of the function declaration.
926 */
927#if defined(IN_USB_R3) || defined(IN_USB_GC) || defined(IN_USB_R0)
928# define USBDECL(type) DECLEXPORT(type) VBOXCALL
929#else
930# define USBDECL(type) DECLIMPORT(type) VBOXCALL
931#endif
932
933
934
935/** @def IN_USBLIB
936 * Used to indicate whether we're inside the same link module as the USBLib.
937 */
938/** @def USBLIB_DECL
939 * USBLIB export or import declaration.
940 * @param type The return type of the function declaration.
941 */
942#ifdef IN_RING0
943# define USBLIB_DECL(type) type VBOXCALL
944#elif defined(IN_USBLIB)
945# define USBLIB_DECL(type) DECLEXPORT(type) VBOXCALL
946#else
947# define USBLIB_DECL(type) DECLIMPORT(type) VBOXCALL
948#endif
949
950
951
952/** @def IN_INTNET_R3
953 * Used to indicate whether we're inside the same link module as the Ring 3
954 * Internal Networking Service.
955 */
956/** @def INTNETR3DECL(type)
957 * Internal Networking Service export or import declaration.
958 * @param type The return type of the function declaration.
959 */
960#ifdef IN_INTNET_R3
961# define INTNETR3DECL(type) DECLEXPORT(type) VBOXCALL
962#else
963# define INTNETR3DECL(type) DECLIMPORT(type) VBOXCALL
964#endif
965
966/** @def IN_INTNET_R0
967 * Used to indicate whether we're inside the same link module as the R0
968 * Internal Network Service.
969 */
970/** @def INTNETR0DECL(type)
971 * Internal Networking Service export or import declaration.
972 * @param type The return type of the function declaration.
973 */
974#ifdef IN_INTNET_R0
975# define INTNETR0DECL(type) DECLEXPORT(type) VBOXCALL
976#else
977# define INTNETR0DECL(type) DECLIMPORT(type) VBOXCALL
978#endif
979
980
981
982/** @def IN_IOM_R3
983 * Used to indicate whether we're inside the same link module as the Ring 3
984 * Input/Output Monitor.
985 */
986/** @def IOMR3DECL(type)
987 * Input/Output Monitor export or import declaration.
988 * @param type The return type of the function declaration.
989 */
990#ifdef IN_IOM_R3
991# define IOMR3DECL(type) DECLEXPORT(type) VBOXCALL
992#else
993# define IOMR3DECL(type) DECLIMPORT(type) VBOXCALL
994#endif
995
996/** @def IN_IOM_GC
997 * Used to indicate whether we're inside the same link module as the GC
998 * Input/Output Monitor.
999 */
1000/** @def IOMGCDECL(type)
1001 * Input/Output Monitor export or import declaration.
1002 * @param type The return type of the function declaration.
1003 */
1004#ifdef IN_IOM_GC
1005# define IOMGCDECL(type) DECLEXPORT(type) VBOXCALL
1006#else
1007# define IOMGCDECL(type) DECLIMPORT(type) VBOXCALL
1008#endif
1009
1010/** @def IN_IOM_R0
1011 * Used to indicate whether we're inside the same link module as the R0
1012 * Input/Output Monitor.
1013 */
1014/** @def IOMR0DECL(type)
1015 * Input/Output Monitor export or import declaration.
1016 * @param type The return type of the function declaration.
1017 */
1018#ifdef IN_IOM_R0
1019# define IOMR0DECL(type) DECLEXPORT(type) VBOXCALL
1020#else
1021# define IOMR0DECL(type) DECLIMPORT(type) VBOXCALL
1022#endif
1023
1024/** @def IOMDECL(type)
1025 * Input/Output Monitor export or import declaration.
1026 * Functions declared using this macro exists in all contexts.
1027 * @param type The return type of the function declaration.
1028 */
1029#if defined(IN_IOM_R3) || defined(IN_IOM_GC) || defined(IN_IOM_R0)
1030# define IOMDECL(type) DECLEXPORT(type) VBOXCALL
1031#else
1032# define IOMDECL(type) DECLIMPORT(type) VBOXCALL
1033#endif
1034
1035
1036/** @def IN_VGADEVICE_R3
1037 * Used to indicate whether we're inside the same link module as
1038 * the HC Ring-3 VGA Monitor(/Manager).
1039 */
1040/** @def VGAR3DECL(type)
1041 * VGA Monitor(/Manager) HC Ring-3 export or import declaration.
1042 * @param type The return type of the function declaration.
1043 */
1044#ifdef IN_VGADEVICE_R3
1045# define VGAR3DECL(type) DECLEXPORT(type) VBOXCALL
1046#else
1047# define VGAR3DECL(type) DECLIMPORT(type) VBOXCALL
1048#endif
1049
1050/** @def IN_VGADEVICE_GC
1051 * Used to indicate whether we're inside the same link module as
1052 * the GC VGA Monitor(/Manager).
1053 */
1054/** @def VGAGCDECL(type)
1055 * VGA Monitor(/Manager) HC Ring-3 export or import declaration.
1056 * @param type The return type of the function declaration.
1057 */
1058#ifdef IN_VGADEVICE_GC
1059# define VGAGCDECL(type) DECLEXPORT(type) VBOXCALL
1060#else
1061# define VGAGCDECL(type) DECLIMPORT(type) VBOXCALL
1062#endif
1063
1064/** @def VGADECL(type)
1065 * VGA Monitor(/Manager) export or import declaration.
1066 * Functions declared using this macro exists in all contexts.
1067 * @param type The return type of the function declaration.
1068 */
1069#if defined(IN_VGADEVICE_R3) || defined(IN_VGADEVICE_GC)
1070# define VGADECL(type) DECLEXPORT(type) VBOXCALL
1071#else
1072# define VGADECL(type) DECLIMPORT(type) VBOXCALL
1073#endif
1074
1075
1076/** @def IN_PGM_R3
1077 * Used to indicate whether we're inside the same link module as the Ring 3
1078 * Page Monitor and Manager.
1079 */
1080/** @def PGMR3DECL(type)
1081 * Page Monitor and Manager export or import declaration.
1082 * @param type The return type of the function declaration.
1083 */
1084#ifdef IN_PGM_R3
1085# define PGMR3DECL(type) DECLEXPORT(type) VBOXCALL
1086#else
1087# define PGMR3DECL(type) DECLIMPORT(type) VBOXCALL
1088#endif
1089
1090/** @def IN_PGM_GC
1091 * Used to indicate whether we're inside the same link module as the GC
1092 * Page Monitor and Manager.
1093 */
1094/** @def PGMGCDECL(type)
1095 * Page Monitor and Manager export or import declaration.
1096 * @param type The return type of the function declaration.
1097 */
1098#ifdef IN_PGM_GC
1099# define PGMGCDECL(type) DECLEXPORT(type) VBOXCALL
1100#else
1101# define PGMGCDECL(type) DECLIMPORT(type) VBOXCALL
1102#endif
1103
1104/** @def IN_PGM_R0
1105 * Used to indicate whether we're inside the same link module as the R0
1106 * Page Monitor and Manager.
1107 */
1108/** @def PGMR0DECL(type)
1109 * Page Monitor and Manager export or import declaration.
1110 * @param type The return type of the function declaration.
1111 */
1112#ifdef IN_PGM_R0
1113# define PGMR0DECL(type) DECLEXPORT(type) VBOXCALL
1114#else
1115# define PGMR0DECL(type) DECLIMPORT(type) VBOXCALL
1116#endif
1117
1118/** @def PGMDECL(type)
1119 * Page Monitor and Manager export or import declaration.
1120 * @param type The return type of the function declaration.
1121 */
1122#if defined(IN_PGM_R3) || defined(IN_PGM_R0) || defined(IN_PGM_GC)
1123# define PGMDECL(type) DECLEXPORT(type) VBOXCALL
1124#else
1125# define PGMDECL(type) DECLIMPORT(type) VBOXCALL
1126#endif
1127
1128
1129/** @def IN_DBGF_R3
1130 * Used to indicate whether we're inside the same link module as the Ring 3
1131 * Debugging Facility.
1132 */
1133/** @def DBGFR3DECL(type)
1134 * R3 Debugging Facility export or import declaration.
1135 * @param type The return type of the function declaration.
1136 */
1137#ifdef IN_DBGF_R3
1138# define DBGFR3DECL(type) DECLEXPORT(type) VBOXCALL
1139#else
1140# define DBGFR3DECL(type) DECLIMPORT(type) VBOXCALL
1141#endif
1142
1143/** @def IN_DBGF_R0
1144 * Used to indicate whether we're inside the same link module as the Ring 0
1145 * Debugging Facility.
1146 */
1147/** @def DBGFR0DECL(type)
1148 * R0 Debugging Facility export or import declaration.
1149 * @param type The return type of the function declaration.
1150 */
1151#ifdef IN_DBGF_R0
1152# define DBGFR0DECL(type) DECLEXPORT(type) VBOXCALL
1153#else
1154# define DBGFR0DECL(type) DECLIMPORT(type) VBOXCALL
1155#endif
1156
1157/** @def IN_DBGF_GC
1158 * Used to indicate whether we're inside the same link module as the GC
1159 * Debugging Facility.
1160 */
1161/** @def DBGFGCDECL(type)
1162 * GC Debugging Facility export or import declaration.
1163 * @param type The return type of the function declaration.
1164 */
1165#ifdef IN_DBGF_GC
1166# define DBGFGCDECL(type) DECLEXPORT(type) VBOXCALL
1167#else
1168# define DBGFGCDECL(type) DECLIMPORT(type) VBOXCALL
1169#endif
1170
1171/** @def DBGFGCDECL(type)
1172 * Debugging Facility export or import declaration.
1173 * @param type The return type of the function declaration.
1174 */
1175#if defined(IN_DBGF_R3) || defined(IN_DBGF_R0) || defined(IN_DBGF_GC)
1176# define DBGFDECL(type) DECLEXPORT(type) VBOXCALL
1177#else
1178# define DBGFDECL(type) DECLIMPORT(type) VBOXCALL
1179#endif
1180
1181
1182
1183/** @def IN_SSM_R3
1184 * Used to indicate whether we're inside the same link module as the Ring 3
1185 * Saved State Manager.
1186 */
1187/** @def SSMR3DECL(type)
1188 * R3 Saved State export or import declaration.
1189 * @param type The return type of the function declaration.
1190 */
1191#ifdef IN_SSM_R3
1192# define SSMR3DECL(type) DECLEXPORT(type) VBOXCALL
1193#else
1194# define SSMR3DECL(type) DECLIMPORT(type) VBOXCALL
1195#endif
1196
1197
1198
1199/** @def IN_STAM_R3
1200 * Used to indicate whether we're inside the same link module as the Ring 3
1201 * Statistics Manager.
1202 */
1203/** @def STAMR3DECL(type)
1204 * R3 Statistics Manager export or import declaration.
1205 * @param type The return type of the function declaration.
1206 */
1207#ifdef IN_STAM_R3
1208# define STAMR3DECL(type) DECLEXPORT(type) VBOXCALL
1209#else
1210# define STAMR3DECL(type) DECLIMPORT(type) VBOXCALL
1211#endif
1212
1213/** @def IN_STAM_R0
1214 * Used to indicate whether we're inside the same link module as the Ring 0
1215 * Statistics Manager.
1216 */
1217/** @def STAMR0DECL(type)
1218 * R0 Statistics Manager export or import declaration.
1219 * @param type The return type of the function declaration.
1220 */
1221#ifdef IN_STAM_R0
1222# define STAMR0DECL(type) DECLEXPORT(type) VBOXCALL
1223#else
1224# define STAMR0DECL(type) DECLIMPORT(type) VBOXCALL
1225#endif
1226
1227/** @def IN_STAM_GC
1228 * Used to indicate whether we're inside the same link module as the GC
1229 * Statistics Manager.
1230 */
1231/** @def STAMGCDECL(type)
1232 * GC Statistics Manager export or import declaration.
1233 * @param type The return type of the function declaration.
1234 */
1235#ifdef IN_STAM_GC
1236# define STAMGCDECL(type) DECLEXPORT(type) VBOXCALL
1237#else
1238# define STAMGCDECL(type) DECLIMPORT(type) VBOXCALL
1239#endif
1240
1241/** @def STAMGCDECL(type)
1242 * Debugging Facility export or import declaration.
1243 * @param type The return type of the function declaration.
1244 */
1245#if defined(IN_STAM_R3) || defined(IN_STAM_R0) || defined(IN_STAM_GC)
1246# define STAMDECL(type) DECLEXPORT(type) VBOXCALL
1247#else
1248# define STAMDECL(type) DECLIMPORT(type) VBOXCALL
1249#endif
1250
1251
1252
1253/** @def IN_EM_R3
1254 * Used to indicate whether we're inside the same link module as the Ring 3
1255 * Execution Monitor.
1256 */
1257/** @def EMR3DECL(type)
1258 * Execution Monitor export or import declaration.
1259 * @param type The return type of the function declaration.
1260 */
1261#ifdef IN_EM_R3
1262# define EMR3DECL(type) DECLEXPORT(type) VBOXCALL
1263#else
1264# define EMR3DECL(type) DECLIMPORT(type) VBOXCALL
1265#endif
1266
1267/** @def IN_EM_GC
1268 * Used to indicate whether we're inside the same link module as the GC
1269 * Execution Monitor.
1270 */
1271/** @def EMGCDECL(type)
1272 * Execution Monitor export or import declaration.
1273 * @param type The return type of the function declaration.
1274 */
1275#ifdef IN_EM_GC
1276# define EMGCDECL(type) DECLEXPORT(type) VBOXCALL
1277#else
1278# define EMGCDECL(type) DECLIMPORT(type) VBOXCALL
1279#endif
1280
1281
1282/** @def EMDECL(type)
1283 * Execution Monitor export or import declaration.
1284 * @param type The return type of the function declaration.
1285 */
1286#if defined(IN_EM_R3) || defined(IN_EM_GC) || defined(IN_EM_R0)
1287# define EMDECL(type) DECLEXPORT(type) VBOXCALL
1288#else
1289# define EMDECL(type) DECLIMPORT(type) VBOXCALL
1290#endif
1291
1292
1293/** @def IN_IDE_R3
1294 * Used to indicate whether we're inside the same link module as the Ring 3
1295 * IDE device.
1296 */
1297/** @def IDER3DECL(type)
1298 * Ring-3 IDE device export or import declaration.
1299 * @param type The return type of the function declaration.
1300 */
1301#ifdef IN_IDE_R3
1302# define IDER3DECL(type) DECLEXPORT(type) VBOXCALL
1303#else
1304# define IDER3DECL(type) DECLIMPORT(type) VBOXCALL
1305#endif
1306
1307
1308/** @def IN_VBOXDDU
1309 * Used to indicate whether we're inside the VBoxDDU shared object.
1310 */
1311/** @def VBOXDDU_DECL(type)
1312 * VBoxDDU export or import (ring-3).
1313 * @param type The return type of the function declaration.
1314 */
1315#ifdef IN_VBOXDDU
1316# define VBOXDDU_DECL(type) DECLEXPORT(type) VBOXCALL
1317#else
1318# define VBOXDDU_DECL(type) DECLIMPORT(type) VBOXCALL
1319#endif
1320
1321
1322
1323/** @def IN_REM_R0
1324 * Used to indicate whether we're inside the same link module as
1325 * the HC Ring-0 Recompiled Execution Manager.
1326 */
1327/** @def REMR0DECL(type)
1328 * Recompiled Execution Manager HC Ring-0 export or import declaration.
1329 * @param type The return type of the function declaration.
1330 */
1331#ifdef IN_REM_R0
1332# define REMR0DECL(type) DECLEXPORT(type) VBOXCALL
1333#else
1334# define REMR0DECL(type) DECLIMPORT(type) VBOXCALL
1335#endif
1336
1337/** @def IN_RT_R3
1338 * Used to indicate whether we're inside the same link module as
1339 * the HC Ring-3 Recompiled Execution Manager.
1340 */
1341/** @def RTR3DECL(type)
1342 * Recompiled Execution Manager HC Ring-3 export or import declaration.
1343 * @param type The return type of the function declaration.
1344 */
1345#ifdef IN_REM_R3
1346# define REMR3DECL(type) DECLEXPORT(type) VBOXCALL
1347#else
1348# define REMR3DECL(type) DECLIMPORT(type) VBOXCALL
1349#endif
1350
1351/** @def IN_REM_GC
1352 * Used to indicate whether we're inside the same link module as
1353 * the GC Recompiled Execution Manager.
1354 */
1355/** @def REMGCDECL(type)
1356 * Recompiled Execution Manager HC Ring-3 export or import declaration.
1357 * @param type The return type of the function declaration.
1358 */
1359#ifdef IN_REM_GC
1360# define REMGCDECL(type) DECLEXPORT(type) VBOXCALL
1361#else
1362# define REMGCDECL(type) DECLIMPORT(type) VBOXCALL
1363#endif
1364
1365/** @def REMDECL(type)
1366 * Recompiled Execution Manager export or import declaration.
1367 * Functions declared using this macro exists in all contexts.
1368 * @param type The return type of the function declaration.
1369 */
1370#if defined(IN_REM_R3) || defined(IN_REM_GC) || defined(IN_REM_R0)
1371# define REMDECL(type) DECLEXPORT(type) VBOXCALL
1372#else
1373# define REMDECL(type) DECLIMPORT(type) VBOXCALL
1374#endif
1375
1376
1377
1378
1379/** @def DBGDECL(type)
1380 * Debugger module export or import declaration.
1381 * Functions declared using this exists only in R3 since the
1382 * debugger modules is R3 only.
1383 * @param type The return type of the function declaration.
1384 */
1385#if defined(IN_DBG_R3) || defined(IN_DBG)
1386# define DBGDECL(type) DECLEXPORT(type) VBOXCALL
1387#else
1388# define DBGDECL(type) DECLIMPORT(type) VBOXCALL
1389#endif
1390
1391
1392/** @def NOT_DMIK(expr)
1393 * Turns the given expression into NOOP when DEBUG_dmik is defined. Evaluates
1394 * the expression normally otherwise.
1395 * @param expr Expression to guard.
1396 */
1397#if defined(DEBUG_dmik)
1398# define NOT_DMIK(expr) do { } while (0)
1399#else
1400# define NOT_DMIK(expr) expr
1401#endif
1402
1403
1404#endif
1405
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