Changeset 910 in vbox for trunk/src/VBox/Main
- Timestamp:
- Feb 14, 2007 4:51:08 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/hgcm/HGCM.cpp
r909 r910 1164 1164 } break; 1165 1165 1166 #if 0 1166 1167 case HGCMMSGID_LOADSTATE: 1167 1168 { … … 1172 1173 1173 1174 rc = VINF_SUCCESS; 1174 if (pClient && pS vc->m_fntable.pfnLoadState)1175 if (pClient && pService->m_fntable.pfnLoadState) 1175 1176 { 1176 rc = pS vc->m_fntable.pfnLoadState (pMsg->u32ClientID, HGCM_CLIENT_DATA(pSvc, pClient), pMsg->pSSM);1177 rc = pService->m_fntable.pfnLoadState (pMsg->u32ClientID, HGCM_CLIENT_DATA(pService, pClient), pMsg->pSSM); 1177 1178 hgcmObjDereference (pClient); 1178 1179 } … … 1188 1189 1189 1190 rc = VINF_SUCCESS; 1190 if (pClient && pS vc->m_fntable.pfnSaveState)1191 if (pClient && pService->m_fntable.pfnSaveState) 1191 1192 { 1192 rc = pS vc->m_fntable.pfnSaveState (pMsg->u32ClientID, HGCM_CLIENT_DATA(pSvc, pClient), pMsg->pSSM);1193 rc = pService->m_fntable.pfnSaveState (pMsg->u32ClientID, HGCM_CLIENT_DATA(pService, pClient), pMsg->pSSM); 1193 1194 hgcmObjDereference (pClient); 1194 1195 } 1195 1196 break; 1196 1197 } 1197 1198 #endif 1198 1199 default: 1199 1200 {
Note:
See TracChangeset
for help on using the changeset viewer.