Changeset 98528 in vbox for trunk/src/VBox/Main
- Timestamp:
- Feb 10, 2023 3:23:41 PM (2 years ago)
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestCtrlPrivate.cpp
r98526 r98528 141 141 RT_NOREF(pvACL, cbACL); 142 142 143 int rc;143 int vrc; 144 144 145 145 mType = GuestBase::fileModeToFsObjType(pFsObjInfo->Attr.fMode); … … 158 158 default: 159 159 mFileAttrs += '?'; 160 AssertFailedStmt( rc = VERR_NOT_SUPPORTED);160 AssertFailedStmt(vrc = VERR_NOT_SUPPORTED); 161 161 break; 162 162 } … … 1045 1045 vrc = HGCMSvcGetU32(&pSvcCb->mpaParms[idx++], &dataCb.uType); 1046 1046 AssertRCReturn(vrc, vrc); 1047 vrc = HGCMSvcGetU32(&pSvcCb->mpaParms[idx++], &dataCb. rc);1047 vrc = HGCMSvcGetU32(&pSvcCb->mpaParms[idx++], &dataCb.vrc); 1048 1048 AssertRCReturn(vrc, vrc); 1049 1049 vrc = HGCMSvcGetPv(&pSvcCb->mpaParms[idx++], &dataCb.pvPayload, &dataCb.cbPayload); … … 1053 1053 { 1054 1054 GuestWaitEventPayload evPayload(dataCb.uType, dataCb.pvPayload, dataCb.cbPayload); 1055 vrc = signalWaitEventInternal(pCtxCb, dataCb. rc, &evPayload);1055 vrc = signalWaitEventInternal(pCtxCb, dataCb.vrc, &evPayload); 1056 1056 } 1057 1057 catch (int vrcEx) /* Thrown by GuestWaitEventPayload constructor. */ -
trunk/src/VBox/Main/src-client/GuestDirectoryImpl.cpp
r98526 r98528 202 202 case GUEST_MSG_DISCONNECTED: 203 203 /** @todo vrc = i_onGuestDisconnected(pCbCtx, pSvcCb); */ 204 vrc = VINF_SUCCESS; // TODO204 vrc = VINF_SUCCESS; /// @todo To be implemented 205 205 break; 206 206 … … 554 554 if (mSession->i_getParent()->i_getGuestControlFeatures0() & VBOX_GUESTCTRL_GF_0_TOOLBOX_AS_CMDS) 555 555 { 556 // TODO556 /// @todo To be implemented 557 557 vrc = VERR_NOT_IMPLEMENTED; 558 558 } … … 609 609 if (mSession->i_getParent()->i_getGuestControlFeatures0() & VBOX_GUESTCTRL_GF_0_TOOLBOX_AS_CMDS) 610 610 { 611 // TODO611 /// @todo To be implemented 612 612 RT_NOREF(objData, pvrcGuest); 613 613 vrc = 0; -
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r98526 r98528 983 983 if (RT_SUCCESS(vrc)) 984 984 { 985 // TODO985 /// @todo To be implemented 986 986 } 987 987 } … … 1260 1260 if (RT_SUCCESS(vrc)) 1261 1261 { 1262 // TODO1262 /// @todo To be implemented 1263 1263 } 1264 1264 } … … 1711 1711 if (RT_SUCCESS(vrc)) 1712 1712 { 1713 // TODO1713 /// @todo To be implemented 1714 1714 } 1715 1715 } … … 1991 1991 if (RT_SUCCESS(vrc)) 1992 1992 { 1993 // TODO1993 /// @todo To be implemented 1994 1994 #if 0 1995 1995 const ComPtr<IEvent> pThisEvent = pEvent->Event();
Note:
See TracChangeset
for help on using the changeset viewer.