Changeset 75883 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- Dec 2, 2018 8:58:27 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/shmem-win.cpp
r75879 r75883 62 62 #endif 63 63 64 64 65 /********************************************************************************************************************************* 65 66 * Structures and Typedefs * … … 74 75 volatile uint32_t cMappings; 75 76 /** Pointer to the region mapping. */ 76 void 77 void *pvMapping; 77 78 /** Start offset */ 78 79 size_t offRegion; … … 95 96 /** Magic value (RTSHMEM_MAGIC). */ 96 97 uint32_t u32Magic; 98 /** Flag whether this instance created the named shared memory object. */ 99 bool fCreate; 97 100 /** Handle to the underlying mapping object. */ 98 101 HANDLE hShmObj; 99 /** Flag whether this instance created the named shared memory object. */100 bool fCreate;101 102 /** Size of the mapping object in bytes. */ 102 103 size_t cbMax; … … 114 115 115 116 116 /*********************************************************************************************************************************117 * Internal Functions *118 *********************************************************************************************************************************/119 117 120 118
Note:
See TracChangeset
for help on using the changeset viewer.