Changeset 81369 in vbox for trunk/include/VBox
- Timestamp:
- Oct 18, 2019 9:13:03 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134082
- Location:
- trunk/include/VBox
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/clipboard-helper.h
r81223 r81369 82 82 * @param pwszSrc The source UTF-16 string 83 83 * @param cwcSrc The length of the source string in RTUTF16 units. 84 * @ retvalpcwcDst The length of the destination string in RTUTF16 units.84 * @param pcwcDst The length of the destination string in RTUTF16 units. 85 85 */ 86 86 int ShClUtf16GetLinSize(PRTUTF16 pwszSrc, size_t cwcSrc, size_t *pcwcDst); -
trunk/include/VBox/VMMDev.h
r77893 r81369 85 85 * @remarks These defines also live in the 16-bit and assembly versions of this 86 86 * header. 87 * @{ 87 88 */ 88 89 #define VMMDEV_VERSION 0x00010004 … … 1853 1854 } 1854 1855 1855 /** @} */1856 1856 1857 1857 /** @name VBVA ring defines. … … 1872 1872 * until the record is completed. 1873 1873 * 1874 * /1874 * @{ */ 1875 1875 #define VMMDEV_VBVA_RING_BUFFER_SIZE (_4M - _1K) 1876 1876 #define VMMDEV_VBVA_RING_BUFFER_THRESHOLD (4 * _1K) … … 1965 1965 /** @} */ 1966 1966 1967 /** @} */ 1967 1968 RT_C_DECLS_END 1968 1969 #pragma pack() -
trunk/include/VBox/types.h
r81031 r81369 831 831 } VBOXIDTR, *PVBOXIDTR; 832 832 #pragma pack() 833 834 /** @} */835 833 836 834 -
trunk/include/VBox/vd-ifs-internal.h
r76585 r81369 34 34 35 35 RT_C_DECLS_BEGIN 36 37 /** @addtogroup grp_vd 38 * @internal 39 * @{ */ 36 40 37 41 /** … … 684 688 } 685 689 690 /** @} */ 686 691 RT_C_DECLS_END 687 692 688 /** @} */689 690 693 #endif /* !VBOX_INCLUDED_vd_ifs_internal_h */ -
trunk/include/VBox/vd-ifs.h
r79794 r81369 41 41 42 42 RT_C_DECLS_BEGIN 43 44 /** @addtogroup grp_vd 45 * @{ */ 43 46 44 47 /** Interface header magic. */ -
trunk/include/VBox/vmm/cpum.h
r81240 r81369 1572 1572 /** @} */ 1573 1573 1574 #if !defined(IPRT_WITHOUT_NAMED_UNIONS_AND_STRUCTS) && defined(RT_ARCH_AMD64) 1574 #if (!defined(IPRT_WITHOUT_NAMED_UNIONS_AND_STRUCTS) && defined(RT_ARCH_AMD64)) || defined(DOXYGEN_RUNNING) 1575 /** @name Inlined Guest Getters and predicates Functions. 1576 * @{ */ 1575 1577 1576 1578 /** … … 2515 2517 } 2516 2518 2519 /** @} */ 2517 2520 #endif /* !IPRT_WITHOUT_NAMED_UNIONS_AND_STRUCTS && RT_ARCH_AMD64 */ 2518 2521 2519 /** @} */2520 2522 2521 2523 -
trunk/include/VBox/vmm/cpumctx.h
r80069 r81369 639 639 uint8_t abPadding0[48]; 640 640 } hwvirt; 641 /** @} */642 641 } CPUMCTX; 643 642 #pragma pack() -
trunk/include/VBox/vmm/hm_svm.h
r81245 r81369 1156 1156 } while (0) 1157 1157 1158 /** @def HMSVM_SEG_REG_COPY_ TO_VMCB1158 /** @def HMSVM_SEG_REG_COPY_FROM_VMCB 1159 1159 * Copies the specified segment register from the VMCB to a virtual CPU 1160 1160 * context. -
trunk/include/VBox/vmm/pdmcommon.h
r76585 r81369 90 90 91 91 92 /** PDM Attach/Detach Callback Flags.92 /** @name PDM Attach/Detach Callback Flags. 93 93 * Used by PDMDeviceAttach, PDMDeviceDetach, PDMDriverAttach, PDMDriverDetach, 94 94 * FNPDMDEVATTACH, FNPDMDEVDETACH, FNPDMDRVATTACH, FNPDMDRVDETACH and 95 95 * FNPDMDRVCONSTRUCT. 96 @{ */96 * @{ */ 97 97 /** The attach/detach command is not a hotplug event. */ 98 98 #define PDM_TACH_FLAGS_NOT_HOT_PLUG RT_BIT_32(0) … … 100 100 * This is mostly for internal use. */ 101 101 #define PDM_TACH_FLAGS_NO_CALLBACKS RT_BIT_32(1) 102 /* @} */102 /** @} */ 103 103 104 104 -
trunk/include/VBox/vmm/vmapi.h
r80338 r81369 270 270 typedef VMREQ *PVMREQ; 271 271 272 /** @} */273 274 272 275 273 #ifndef IN_RC
Note:
See TracChangeset
for help on using the changeset viewer.