Changeset 28237 in vbox for trunk/src/VBox
- Timestamp:
- Apr 13, 2010 9:16:04 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestControl/service.cpp
r28236 r28237 492 492 eFunction, cParms, paParms)); 493 493 ASMBreakpoint(); 494 int rc ;494 int rc = VINF_SUCCESS; 495 495 if ( eFunction == GUEST_EXEC_SEND_STATUS 496 496 && cParms == 4) … … 503 503 paParms[4].getPointer(&data.pvData, &data.cbData); 504 504 505 rc = mpfnHostCallback(mpvHostData, eFunction, 506 (void *)(&data), sizeof(data)); 505 if (mpfnHostCallback) 506 { 507 rc = mpfnHostCallback(mpvHostData, eFunction, 508 (void *)(&data), sizeof(data)); 509 } 507 510 } 508 511 else
Note:
See TracChangeset
for help on using the changeset viewer.