Changeset 76393 in vbox for trunk/include
- Timestamp:
- Dec 23, 2018 2:04:19 AM (6 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VMMDev.h
r76196 r76393 1402 1402 1403 1403 1404 /** 1405 * Shared region description 1406 */ 1407 typedef struct VMMDEVSHAREDREGIONDESC 1408 { 1409 RTGCPTR64 GCRegionAddr; 1410 uint32_t cbRegion; 1411 uint32_t u32Alignment; 1412 } VMMDEVSHAREDREGIONDESC; 1413 AssertCompileSize(VMMDEVSHAREDREGIONDESC, 16); 1404 AssertCompileSize(VMMDEVSHAREDREGIONDESC, 16); /* structure was promoted to VBox/types.h. */ 1414 1405 1415 1406 #define VMMDEVSHAREDREGIONDESC_MAX 32 -
trunk/include/VBox/VMMDevCoreTypes.h
r76196 r76393 37 37 #include <iprt/types.h> 38 38 #ifdef __cplusplus 39 # include <iprt/err.h> 39 # include <iprt/err.h> /* VERR_INVALID_PARAMETER */ 40 40 #endif 41 41 -
trunk/include/VBox/types.h
r71222 r76393 1080 1080 1081 1081 1082 /** 1083 * Shared region description (needed by GMM and others, thus global). 1084 */ 1085 typedef struct VMMDEVSHAREDREGIONDESC 1086 { 1087 RTGCPTR64 GCRegionAddr; 1088 uint32_t cbRegion; 1089 uint32_t u32Alignment; 1090 } VMMDEVSHAREDREGIONDESC; 1091 1092 1082 1093 /** @} */ 1083 1094 -
trunk/include/VBox/vmm/gmm.h
r69475 r76393 31 31 #include <VBox/param.h> 32 32 #include <VBox/ostypes.h> 33 #include <VBox/VMMDev.h>34 33 #include <iprt/avl.h> 35 34 -
trunk/include/VBox/vmm/pgm.h
r73376 r76393 32 32 #include <VBox/vmm/gmm.h> /* for PGMMREGISTERSHAREDMODULEREQ */ 33 33 #include <iprt/x86.h> 34 #include <VBox/VMMDev.h> /* for VMMDEVSHAREDREGIONDESC */35 34 #include <VBox/param.h> 36 35
Note:
See TracChangeset
for help on using the changeset viewer.