- Timestamp:
- Sep 28, 2021 8:05:04 PM (3 years ago)
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.cpp
r91037 r91447 374 374 { "RTR0MemObjAddressR3", (void *)(uintptr_t)RTR0MemObjAddressR3 }, 375 375 { "RTR0MemObjAllocContTag", (void *)(uintptr_t)RTR0MemObjAllocContTag }, 376 { "RTR0MemObjAllocLargeTag", (void *)(uintptr_t)RTR0MemObjAllocLargeTag }, 376 377 { "RTR0MemObjAllocLowTag", (void *)(uintptr_t)RTR0MemObjAllocLowTag }, 377 378 { "RTR0MemObjAllocPageTag", (void *)(uintptr_t)RTR0MemObjAllocPageTag }, -
trunk/src/VBox/HostDrivers/Support/SUPDrvIOC.h
r91037 r91447 223 223 * - nothing 224 224 */ 225 #define SUPDRV_IOC_VERSION 0x0031000 2225 #define SUPDRV_IOC_VERSION 0x00310003 226 226 227 227 /** SUP_IOCTL_COOKIE. */ -
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r91037 r91447 278 278 strcpy(CookieReq.u.In.szMagic, SUPCOOKIE_MAGIC); 279 279 CookieReq.u.In.u32ReqVersion = SUPDRV_IOC_VERSION; 280 const uint32_t uMinVersion = (SUPDRV_IOC_VERSION & 0xffff0000) == 0x003 00000281 ? 0x0031000 2280 const uint32_t uMinVersion = (SUPDRV_IOC_VERSION & 0xffff0000) == 0x00310000 281 ? 0x00310003 282 282 : SUPDRV_IOC_VERSION & 0xffff0000; 283 283 CookieReq.u.In.u32MinVersion = uMinVersion;
Note:
See TracChangeset
for help on using the changeset viewer.