Changeset 26430 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Feb 11, 2010 2:23:01 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57562
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r25744 r26430 191 191 { "RTR0MemObjAllocPage", (void *)RTR0MemObjAllocPage }, 192 192 { "RTR0MemObjAllocPhys", (void *)RTR0MemObjAllocPhys }, 193 { "RTR0MemObjAllocPhysEx", (void *)RTR0MemObjAllocPhysEx }, 193 194 { "RTR0MemObjAllocPhysNC", (void *)RTR0MemObjAllocPhysNC }, 194 195 { "RTR0MemObjAllocCont", (void *)RTR0MemObjAllocCont }, -
trunk/src/VBox/HostDrivers/Support/SUPDrvIOC.h
r25528 r26430 197 197 * - Nothing. 198 198 */ 199 #define SUPDRV_IOC_VERSION 0x0014000 0199 #define SUPDRV_IOC_VERSION 0x00140001 200 200 201 201 /** SUP_IOCTL_COOKIE. */ -
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r25528 r26430 273 273 CookieReq.u.In.u32ReqVersion = SUPDRV_IOC_VERSION; 274 274 const uint32_t uMinVersion = (SUPDRV_IOC_VERSION & 0xffff0000) == 0x00140000 275 ? 0x0014000 0275 ? 0x00140001 276 276 : SUPDRV_IOC_VERSION & 0xffff0000; 277 277 CookieReq.u.In.u32MinVersion = uMinVersion;
Note:
See TracChangeset
for help on using the changeset viewer.