Changeset 45076 in vbox for trunk/src/VBox/Additions/common/VBoxService
- Timestamp:
- Mar 18, 2013 8:07:37 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlSession.cpp
r45010 r45076 208 208 209 209 /* Report back in any case. */ 210 CALLBACKPAYLOAD_FILE_NOT FIY_OPEN cplOpen = { rc, uHandle };210 CALLBACKPAYLOAD_FILE_NOTIFY_OPEN cplOpen = { rc, uHandle }; 211 211 int rc2 = VbglR3GuestCtrlFileNotify(pHostCtx->uClientID, pHostCtx->uContextID, 212 212 GUEST_FILE_NOTIFYTYPE_OPEN, &cplOpen, sizeof(cplOpen)); … … 242 242 243 243 /* Report back in any case. */ 244 CALLBACKPAYLOAD_FILE_NOT FIY_CLOSE cplClose = { rc };244 CALLBACKPAYLOAD_FILE_NOTIFY_CLOSE cplClose = { rc }; 245 245 int rc2 = VbglR3GuestCtrlFileNotify(pHostCtx->uClientID, pHostCtx->uContextID, 246 246 GUEST_FILE_NOTIFYTYPE_CLOSE, &cplClose, sizeof(cplClose)); … … 292 292 293 293 /* Report back in any case. */ 294 CALLBACKPAYLOAD_FILE_NOT FIY_READ cplRead = { rc, (uint32_t)cbRead, pvDataRead };294 CALLBACKPAYLOAD_FILE_NOTIFY_READ cplRead = { rc, (uint32_t)cbRead, pvDataRead }; 295 295 int rc2 = VbglR3GuestCtrlFileNotify(pHostCtx->uClientID, pHostCtx->uContextID, 296 296 GUEST_FILE_NOTIFYTYPE_READ, &cplRead, sizeof(cplRead)); … … 347 347 348 348 /* Report back in any case. */ 349 CALLBACKPAYLOAD_FILE_NOT FIY_READ cplRead = { rc, (uint32_t)cbRead, pvDataRead };349 CALLBACKPAYLOAD_FILE_NOTIFY_READ cplRead = { rc, (uint32_t)cbRead, pvDataRead }; 350 350 int rc2 = VbglR3GuestCtrlFileNotify(pHostCtx->uClientID, pHostCtx->uContextID, 351 351 GUEST_FILE_NOTIFYTYPE_READ, &cplRead, sizeof(cplRead)); … … 390 390 391 391 /* Report back in any case. */ 392 CALLBACKPAYLOAD_FILE_NOT FIY_WRITE cplWrite = { rc, (uint32_t)cbWritten };392 CALLBACKPAYLOAD_FILE_NOTIFY_WRITE cplWrite = { rc, (uint32_t)cbWritten }; 393 393 int rc2 = VbglR3GuestCtrlFileNotify(pHostCtx->uClientID, pHostCtx->uContextID, 394 394 GUEST_FILE_NOTIFYTYPE_WRITE, &cplWrite, sizeof(cplWrite)); … … 430 430 431 431 /* Report back in any case. */ 432 CALLBACKPAYLOAD_FILE_NOT FIY_WRITE cplWrite = { rc, (uint32_t)cbWritten };432 CALLBACKPAYLOAD_FILE_NOTIFY_WRITE cplWrite = { rc, (uint32_t)cbWritten }; 433 433 int rc2 = VbglR3GuestCtrlFileNotify(pHostCtx->uClientID, pHostCtx->uContextID, 434 434 GUEST_FILE_NOTIFYTYPE_WRITE, &cplWrite, sizeof(cplWrite));
Note:
See TracChangeset
for help on using the changeset viewer.