Changeset 14334 in vbox for trunk/src/VBox
- Timestamp:
- Nov 18, 2008 10:17:27 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r14332 r14334 4451 4451 if (pReq->Hdr.cbIn == SUP_IOCTL_CALL_SERVICE_SIZE(0)) 4452 4452 #ifdef RT_WITH_W64_UNWIND_HACK 4453 rc = supdrvNtWrapServiceReqHandler((P RNRT)pfnServiceReqHandler, pSession, pReq->u.In.uOperation, pReq->u.In.u64Arg, NULL);4453 rc = supdrvNtWrapServiceReqHandler((PFNRT)pfnServiceReqHandler, pSession, pReq->u.In.uOperation, pReq->u.In.u64Arg, NULL); 4454 4454 #else 4455 4455 rc = pfnServiceReqHandler(pSession, pReq->u.In.uOperation, pReq->u.In.u64Arg, NULL); … … 4457 4457 else 4458 4458 #ifdef RT_WITH_W64_UNWIND_HACK 4459 rc = supdrvNtWrapServiceReqHandler((P RNRT)pfnServiceReqHandler, pSession, pReq->u.In.uOperation,4459 rc = supdrvNtWrapServiceReqHandler((PFNRT)pfnServiceReqHandler, pSession, pReq->u.In.uOperation, 4460 4460 pReq->u.In.u64Arg, (PSUPR0SERVICEREQHDR)&pReq->abReqPkt[0]); 4461 4461 #else
Note:
See TracChangeset
for help on using the changeset viewer.