Changeset 70604 in vbox for trunk/include
- Timestamp:
- Jan 16, 2018 6:03:18 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 120315
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/Graphics/HGSMIDefs.h
r69307 r70604 41 41 #define HGSMIOFFSET_VOID ((HGSMIOFFSET)~0) 42 42 43 /* Describes a shared memory area buffer. 43 /** 44 * Describes a shared memory area buffer. 45 * 44 46 * Used for calculations with offsets and for buffers verification. 45 47 */ 46 48 typedef struct HGSMIAREA 47 49 { 48 uint8_t *pu8Base; /* The starting address of the area. Corresponds to offset 'offBase'. */ 49 HGSMIOFFSET offBase; /* The starting offset of the area. */ 50 HGSMIOFFSET offLast; /* The last valid offset: 51 * offBase + cbArea - 1 - (sizeof(header) + sizeof(tail)). 52 */ 53 HGSMISIZE cbArea; /* Size of the area. */ 50 uint8_t *pu8Base; /**< The starting address of the area. Corresponds to offset 'offBase'. */ 51 HGSMIOFFSET offBase; /**< The starting offset of the area. */ 52 HGSMIOFFSET offLast; /**< The last valid offset: offBase + cbArea - 1 - (sizeof(header) + sizeof(tail)). */ 53 HGSMISIZE cbArea; /**< Size of the area. */ 54 54 } HGSMIAREA; 55 55
Note:
See TracChangeset
for help on using the changeset viewer.