Changeset 36001 in vbox for trunk/include/VBox
- Timestamp:
- Feb 16, 2011 9:21:39 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmasynccompletion.h
r35361 r36001 228 228 * @{ */ 229 229 /** Open the file in read-only mode. */ 230 #define PDMACEP_FILE_FLAGS_READ_ONLY RT_BIT_32(0)230 #define PDMACEP_FILE_FLAGS_READ_ONLY RT_BIT_32(0) 231 231 /** Whether the file should not be write protected. 232 232 * The default is to protect the file against writes by other processes … … 234 234 * concurrent access which can occur if the local writeback cache is enabled. 235 235 */ 236 #define PDMACEP_FILE_FLAGS_DONT_LOCK RT_BIT_32(2) 236 #define PDMACEP_FILE_FLAGS_DONT_LOCK RT_BIT_32(2) 237 /** Open the endpoint with the host cache enabled. */ 238 #define PDMACEP_FILE_FLAGS_HOST_CACHE_ENABLED RT_BIT_32(3) 237 239 /** @} */ 238 240
Note:
See TracChangeset
for help on using the changeset viewer.