Changeset 20363 in vbox for trunk/include/VBox
- Timestamp:
- Jun 8, 2009 12:15:05 AM (16 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 48 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxDev.h
r19654 r20363 33 33 #include <VBox/cdefs.h> 34 34 35 __BEGIN_DECLS35 RT_BEGIN_DECLS 36 36 37 37 /** Mouse capability bits … … 85 85 #define VMMDEV_HEAP_SIZE (4*PAGE_SIZE) 86 86 87 __END_DECLS87 RT_END_DECLS 88 88 89 89 #endif -
trunk/include/VBox/VBoxGuest.h
r19654 r20363 1666 1666 /* General-purpose functions */ 1667 1667 1668 __BEGIN_DECLS1668 RT_BEGIN_DECLS 1669 1669 VBGLR3DECL(int) VbglR3Init(void); 1670 1670 VBGLR3DECL(int) VbglR3InitUser(void); … … 1747 1747 1748 1748 1749 __END_DECLS1749 RT_END_DECLS 1750 1750 1751 1751 #endif /* IN_RING3 */ -
trunk/include/VBox/VBoxGuestLib.h
r15704 r20363 69 69 typedef uint32_t VBGLIOPORT; 70 70 71 __BEGIN_DECLS71 RT_BEGIN_DECLS 72 72 73 73 #ifdef VBGL_VBOXGUEST … … 326 326 DECLVBGL(int) VbglQueryVMMDevMemory (VMMDevMemory **ppVMMDevMemory); 327 327 328 __END_DECLS328 RT_END_DECLS 329 329 330 330 /** @} */ -
trunk/include/VBox/VBoxHDD.h
r20167 r20363 41 41 #include <VBox/vmapi.h> 42 42 43 __BEGIN_DECLS43 RT_BEGIN_DECLS 44 44 45 45 #ifdef IN_RING0 … … 1735 1735 1736 1736 1737 __END_DECLS1737 RT_END_DECLS 1738 1738 1739 1739 /** @} */ -
trunk/include/VBox/cfgm.h
r19466 r20363 62 62 63 63 64 __BEGIN_DECLS64 RT_BEGIN_DECLS 65 65 66 66 #ifdef IN_RING3 … … 187 187 188 188 189 __END_DECLS189 RT_END_DECLS 190 190 191 191 /** @} */ -
trunk/include/VBox/cpum.h
r19478 r20363 36 36 37 37 38 __BEGIN_DECLS38 RT_BEGIN_DECLS 39 39 40 40 /** @defgroup grp_cpum The CPU Monitor / Manager API … … 1043 1043 1044 1044 /** @} */ 1045 __END_DECLS1045 RT_END_DECLS 1046 1046 1047 1047 -
trunk/include/VBox/cpumdis.h
r18927 r20363 38 38 39 39 40 __BEGIN_DECLS40 RT_BEGIN_DECLS 41 41 /** @addtogroup grp_cpum 42 42 * @{ … … 57 57 58 58 /** @} */ 59 __END_DECLS59 RT_END_DECLS 60 60 61 61 -
trunk/include/VBox/csam.h
r19141 r20363 54 54 55 55 56 __BEGIN_DECLS56 RT_BEGIN_DECLS 57 57 58 58 … … 307 307 308 308 /** @} */ 309 __END_DECLS309 RT_END_DECLS 310 310 311 311 #endif -
trunk/include/VBox/dbg.h
r13411 r20363 41 41 #include <iprt/stdarg.h> 42 42 43 __BEGIN_DECLS43 RT_BEGIN_DECLS 44 44 45 45 /** @def VBOX_WITH_DEBUGGER … … 731 731 732 732 733 __END_DECLS733 RT_END_DECLS 734 734 735 735 #endif -
trunk/include/VBox/dbgf.h
r20152 r20363 40 40 #include <iprt/dbg.h> 41 41 42 __BEGIN_DECLS42 RT_BEGIN_DECLS 43 43 44 44 … … 1041 1041 1042 1042 1043 __END_DECLS1043 RT_END_DECLS 1044 1044 1045 1045 #endif -
trunk/include/VBox/dbggui.h
r12884 r20363 39 39 40 40 41 __BEGIN_DECLS41 RT_BEGIN_DECLS 42 42 43 43 /** @defgroup grp_dbggui VirtualBox Debugger GUI … … 172 172 /** @} */ 173 173 174 __END_DECLS174 RT_END_DECLS 175 175 176 176 #endif -
trunk/include/VBox/dis.h
r10273 r20363 39 39 #endif 40 40 41 __BEGIN_DECLS41 RT_BEGIN_DECLS 42 42 43 43 … … 759 759 760 760 761 __END_DECLS761 RT_END_DECLS 762 762 763 763 #endif -
trunk/include/VBox/em.h
r20071 r20363 36 36 #include <VBox/dis.h> 37 37 38 __BEGIN_DECLS38 RT_BEGIN_DECLS 39 39 40 40 /** @defgroup grp_em The Execution Monitor / Manager API … … 229 229 /** @} */ 230 230 231 __END_DECLS231 RT_END_DECLS 232 232 233 233 #endif -
trunk/include/VBox/gmm.h
r19454 r20363 35 35 #include <VBox/sup.h> 36 36 37 __BEGIN_DECLS37 RT_BEGIN_DECLS 38 38 39 39 /** @defgroup grp_gmm GMM - The Global Memory Manager … … 427 427 /** @} */ 428 428 429 __END_DECLS430 431 #endif 432 429 RT_END_DECLS 430 431 #endif 432 -
trunk/include/VBox/gvmm.h
r19707 r20363 36 36 #include <VBox/sup.h> 37 37 38 __BEGIN_DECLS38 RT_BEGIN_DECLS 39 39 40 40 /** @defgroup grp_GVMM GVMM - The Global VM Manager. … … 238 238 /** @} */ 239 239 240 __END_DECLS240 RT_END_DECLS 241 241 242 242 #endif -
trunk/include/VBox/hwaccm.h
r19903 r20363 57 57 } HWACCMSTATE; 58 58 59 __BEGIN_DECLS59 RT_BEGIN_DECLS 60 60 61 61 /** … … 164 164 165 165 /** @} */ 166 __END_DECLS166 RT_END_DECLS 167 167 168 168 -
trunk/include/VBox/intnet.h
r17184 r20363 37 37 #include <iprt/asm.h> 38 38 39 __BEGIN_DECLS39 RT_BEGIN_DECLS 40 40 41 41 … … 980 980 #endif /* IN_RING0 */ 981 981 982 __END_DECLS982 RT_END_DECLS 983 983 984 984 #endif -
trunk/include/VBox/iom.h
r20087 r20363 35 35 #include <VBox/dis.h> 36 36 37 __BEGIN_DECLS37 RT_BEGIN_DECLS 38 38 39 39 … … 277 277 /** @} */ 278 278 279 __END_DECLS279 RT_END_DECLS 280 280 281 281 #endif -
trunk/include/VBox/mm.h
r19757 r20363 38 38 39 39 40 __BEGIN_DECLS40 RT_BEGIN_DECLS 41 41 42 42 /** @defgroup grp_mm The Memory Manager API … … 351 351 352 352 /** @} */ 353 __END_DECLS354 355 356 #endif 357 353 RT_END_DECLS 354 355 356 #endif 357 -
trunk/include/VBox/ostypes.h
r17721 r20363 33 33 #include <iprt/cdefs.h> 34 34 35 __BEGIN_DECLS35 RT_BEGIN_DECLS 36 36 37 37 /** … … 115 115 } VBOXOSTYPE; 116 116 117 __END_DECLS117 RT_END_DECLS 118 118 119 119 #endif -
trunk/include/VBox/patm.h
r13832 r20363 36 36 37 37 38 __BEGIN_DECLS38 RT_BEGIN_DECLS 39 39 40 40 /** @defgroup grp_patm The Patch Manager API … … 671 671 672 672 /** @} */ 673 __END_DECLS673 RT_END_DECLS 674 674 675 675 -
trunk/include/VBox/pdmapi.h
r20056 r20363 37 37 #include <VBox/types.h> 38 38 39 __BEGIN_DECLS39 RT_BEGIN_DECLS 40 40 41 41 /** @defgroup grp_pdm The Pluggable Device Manager API … … 129 129 #endif 130 130 131 __END_DECLS131 RT_END_DECLS 132 132 133 133 /** @} */ -
trunk/include/VBox/pdmasynccompletion.h
r20167 r20363 36 36 #include <iprt/assert.h> 37 37 38 __BEGIN_DECLS38 RT_BEGIN_DECLS 39 39 40 40 /** @defgroup grp_pdm_async_completion The PDM Async I/O Completion API … … 320 320 /** @} */ 321 321 322 __END_DECLS322 RT_END_DECLS 323 323 324 324 #endif -
trunk/include/VBox/pdmasynctask.h
r13005 r20363 33 33 #include <VBox/types.h> 34 34 35 __BEGIN_DECLS35 RT_BEGIN_DECLS 36 36 37 37 … … 60 60 61 61 62 __END_DECLS62 RT_END_DECLS 63 63 64 64 #endif -
trunk/include/VBox/pdmcritsect.h
r20087 r20363 34 34 #include <iprt/critsect.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 38 38 /** @defgroup grp_pdm_critsect The PDM Critical Section API … … 74 74 /** @} */ 75 75 76 __END_DECLS76 RT_END_DECLS 77 77 78 78 #endif -
trunk/include/VBox/pdmdev.h
r20094 r20363 45 45 #include <iprt/stdarg.h> 46 46 47 __BEGIN_DECLS47 RT_BEGIN_DECLS 48 48 49 49 /** @defgroup grp_pdm_device The PDM Devices API … … 3910 3910 /** @} */ 3911 3911 3912 __END_DECLS3912 RT_END_DECLS 3913 3913 3914 3914 #endif -
trunk/include/VBox/pdmdrv.h
r20167 r20363 48 48 #endif 49 49 50 __BEGIN_DECLS50 RT_BEGIN_DECLS 51 51 52 52 /** @defgroup grp_pdm_driver The PDM Drivers API … … 963 963 /** @} */ 964 964 965 __END_DECLS965 RT_END_DECLS 966 966 967 967 #endif -
trunk/include/VBox/pdmifs.h
r20226 r20363 34 34 #include <VBox/hgcmsvc.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 38 38 /** @defgroup grp_pdm_interfaces The PDM Interface Definitions … … 2462 2462 /** @} */ 2463 2463 2464 __END_DECLS2464 RT_END_DECLS 2465 2465 2466 2466 #endif -
trunk/include/VBox/pdmqueue.h
r13005 r20363 33 33 #include <VBox/types.h> 34 34 35 __BEGIN_DECLS35 RT_BEGIN_DECLS 36 36 37 37 /** @defgroup grp_pdm_queue The PDM Queues API … … 134 134 /** @} */ 135 135 136 __END_DECLS136 RT_END_DECLS 137 137 138 138 #endif -
trunk/include/VBox/pdmsrv.h
r13005 r20363 35 35 #include <VBox/cfgm.h> 36 36 37 __BEGIN_DECLS37 RT_BEGIN_DECLS 38 38 39 39 /** @defgroup grp_pdm_services The PDM Services API … … 333 333 /** @} */ 334 334 335 __END_DECLS335 RT_END_DECLS 336 336 337 337 #endif -
trunk/include/VBox/pdmthread.h
r13005 r20363 37 37 #endif 38 38 39 __BEGIN_DECLS39 RT_BEGIN_DECLS 40 40 41 41 /** @defgroup grp_pdm_thread The PDM Threads API … … 298 298 /** @} */ 299 299 300 __END_DECLS300 RT_END_DECLS 301 301 302 302 #endif -
trunk/include/VBox/pdmusb.h
r18645 r20363 44 44 #include <iprt/stdarg.h> 45 45 46 __BEGIN_DECLS46 RT_BEGIN_DECLS 47 47 48 48 /** @defgroup grp_pdm_usbdev The USB Devices API … … 773 773 /** @} */ 774 774 775 __END_DECLS775 RT_END_DECLS 776 776 777 777 #endif -
trunk/include/VBox/pgm.h
r19992 r20363 38 38 #include <VBox/hwacc_vmx.h> 39 39 40 __BEGIN_DECLS40 RT_BEGIN_DECLS 41 41 42 42 /** @defgroup grp_pgm The Page Monitor / Manager API … … 569 569 #endif /* IN_RING3 */ 570 570 571 __END_DECLS571 RT_END_DECLS 572 572 573 573 /** @} */ -
trunk/include/VBox/rem.h
r19660 r20363 37 37 38 38 39 __BEGIN_DECLS39 RT_BEGIN_DECLS 40 40 41 41 /** @defgroup grp_rem The Recompiled Execution Manager API … … 103 103 104 104 /** @} */ 105 __END_DECLS105 RT_END_DECLS 106 106 107 107 -
trunk/include/VBox/selm.h
r19334 r20363 38 38 39 39 40 __BEGIN_DECLS40 RT_BEGIN_DECLS 41 41 42 42 /** @defgroup grp_selm The Selector Monitor(/Manager) API … … 120 120 121 121 /** @} */ 122 __END_DECLS122 RT_END_DECLS 123 123 124 124 #endif -
trunk/include/VBox/ssm.h
r20153 r20363 36 36 #include <VBox/vmapi.h> 37 37 38 __BEGIN_DECLS38 RT_BEGIN_DECLS 39 39 40 40 /** @defgroup grp_ssm The Saved State Manager API … … 521 521 /** @} */ 522 522 523 __END_DECLS523 RT_END_DECLS 524 524 525 525 #endif -
trunk/include/VBox/stam.h
r13598 r20363 40 40 #endif 41 41 42 __BEGIN_DECLS42 RT_BEGIN_DECLS 43 43 44 44 /** @defgroup grp_stam The Statistics Manager API … … 1125 1125 /** @} */ 1126 1126 1127 __END_DECLS1128 1129 #endif 1130 1127 RT_END_DECLS 1128 1129 #endif 1130 -
trunk/include/VBox/sup.h
r19891 r20363 37 37 #include <iprt/asm.h> 38 38 39 __BEGIN_DECLS39 RT_BEGIN_DECLS 40 40 41 41 /** @defgroup grp_sup The Support Library API … … 1146 1146 /** @} */ 1147 1147 1148 __END_DECLS1148 RT_END_DECLS 1149 1149 1150 1150 #endif -
trunk/include/VBox/tm.h
r20096 r20363 37 37 #endif 38 38 39 __BEGIN_DECLS39 RT_BEGIN_DECLS 40 40 41 41 /** @defgroup grp_tm The Time Manager API … … 250 250 /** @} */ 251 251 252 __END_DECLS252 RT_END_DECLS 253 253 254 254 #endif -
trunk/include/VBox/trpm.h
r19015 r20363 36 36 37 37 38 __BEGIN_DECLS38 RT_BEGIN_DECLS 39 39 /** @defgroup grp_trpm The Trap Monitor API 40 40 * @{ … … 149 149 150 150 /** @} */ 151 __END_DECLS151 RT_END_DECLS 152 152 153 153 #endif -
trunk/include/VBox/usb.h
r17067 r20363 33 33 #include <VBox/types.h> 34 34 35 __BEGIN_DECLS35 RT_BEGIN_DECLS 36 36 37 37 /** … … 256 256 #endif /* VBOX_USB_H_INCL_DESCRIPTORS */ 257 257 258 __END_DECLS259 260 #endif 261 258 RT_END_DECLS 259 260 #endif 261 -
trunk/include/VBox/usblib-win.h
r8770 r20363 229 229 230 230 231 __BEGIN_DECLS231 RT_BEGIN_DECLS 232 232 233 233 #ifdef IN_RING3 … … 278 278 /** @} */ 279 279 280 __END_DECLS281 282 283 #endif 284 280 RT_END_DECLS 281 282 283 #endif 284 -
trunk/include/VBox/usblib.h
r8770 r20363 48 48 /** @todo merge the usblib-win.h interface into the darwin and linux ports where suitable. */ 49 49 50 __BEGIN_DECLS50 RT_BEGIN_DECLS 51 51 /** @defgroup grp_USBLib USBLib - USB Support Library 52 52 * This module implements the basic low-level OS interfaces and common USB code. … … 119 119 120 120 /** @} */ 121 __END_DECLS121 RT_END_DECLS 122 122 123 123 #endif -
trunk/include/VBox/vm.h
r19812 r20363 963 963 964 964 #ifdef IN_RC 965 __BEGIN_DECLS965 RT_BEGIN_DECLS 966 966 967 967 /** The VM structure. … … 971 971 extern DECLIMPORT(VM) g_VM; 972 972 973 __END_DECLS973 RT_END_DECLS 974 974 #endif 975 975 -
trunk/include/VBox/vmapi.h
r19435 r20363 38 38 #include <iprt/stdarg.h> 39 39 40 __BEGIN_DECLS40 RT_BEGIN_DECLS 41 41 42 42 /** @defgroup grp_vmm_apis VM All Contexts API … … 447 447 #endif 448 448 449 __END_DECLS450 451 /** @} */ 452 453 #endif 454 455 449 RT_END_DECLS 450 451 /** @} */ 452 453 #endif 454 455 -
trunk/include/VBox/vmm.h
r19732 r20363 38 38 #include <iprt/stdarg.h> 39 39 40 __BEGIN_DECLS40 RT_BEGIN_DECLS 41 41 42 42 /** @defgroup grp_vmm The Virtual Machine Monitor API … … 117 117 * 118 118 * @returns VBox status code. 119 * @param pVM Pointer to the shared VM structure. 119 * @param pVM Pointer to the shared VM structure. 120 120 * @param pvUser User specified argument 121 121 */ … … 140 140 * 141 141 * @returns true / false. 142 * @param pVM Pointer to the shared VM structure. 142 * @param pVM Pointer to the shared VM structure. 143 143 */ 144 144 #define VMMIsHwVirtExtForced(pVM) ((pVM)->fHwVirtExtForced) … … 349 349 350 350 /** @} */ 351 __END_DECLS351 RT_END_DECLS 352 352 353 353 #endif -
trunk/include/VBox/vrdpapi.h
r13832 r20363 52 52 #define VRDP_DEFAULT_PORT (3389) 53 53 54 __BEGIN_DECLS54 RT_BEGIN_DECLS 55 55 56 56 /* Forward declaration of the VRDP server instance handle. */ … … 1187 1187 typedef FNVRDPCREATESERVER *PFNVRDPCREATESERVER; 1188 1188 1189 __END_DECLS1189 RT_END_DECLS 1190 1190 1191 1191 /** @} */ -
trunk/include/VBox/vusb.h
r20226 r20363 34 34 #include <VBox/types.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 38 38 /** @defgroup grp_vusb VBox USB API … … 1003 1003 /** @} */ 1004 1004 1005 __END_DECLS1005 RT_END_DECLS 1006 1006 1007 1007 #endif
Note:
See TracChangeset
for help on using the changeset viewer.