Changeset 75500 in vbox for trunk/src/VBox/HostServices/GuestControl
- Timestamp:
- Nov 16, 2018 1:24:39 AM (6 years ago)
- Location:
- trunk/src/VBox/HostServices/GuestControl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestControl/service.cpp
r73511 r75500 974 974 uint32_t u32Function, 975 975 uint32_t cParms, 976 VBOXHGCMSVCPARM paParms[]) 976 VBOXHGCMSVCPARM paParms[], 977 uint64_t tsArrival) 977 978 { 978 979 AssertLogRelReturnVoid(VALID_PTR(pvService)); 979 980 SELF *pSelf = reinterpret_cast<SELF *>(pvService); 980 981 AssertPtrReturnVoid(pSelf); 982 RT_NOREF_PV(tsArrival); 981 983 pSelf->call(callHandle, u32ClientID, pvClient, u32Function, cParms, paParms); 982 984 } -
trunk/src/VBox/HostServices/GuestControl/testcase/tstGuestControlSvc.cpp
r69500 r75500 211 211 aParmsGuest[1].setUInt32(0 /* Parameters */); 212 212 pTable->pfnCall(pTable->pvService, &callHandle, 1 /* Client ID */, NULL /* pvClient */, 213 GUEST_MSG_WAIT, 2, &aParmsGuest[0] );213 GUEST_MSG_WAIT, 2, &aParmsGuest[0], 0); 214 214 RTTEST_CHECK_RC_RET(g_hTest, callHandle.rc, VINF_SUCCESS, callHandle.rc); 215 215
Note:
See TracChangeset
for help on using the changeset viewer.