Changeset 55437 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Apr 27, 2015 9:35:19 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99783
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r55233 r55437 13371 13371 } 13372 13372 13373 HRESULT SessionMachine::pushGuestProperty(const com::Utf8Str &aName, 13374 const com::Utf8Str &aValue, 13375 LONG64 aTimestamp, 13376 const com::Utf8Str &aFlags) 13373 HRESULT SessionMachine::pushGuestProperty(const com::Utf8Str &aName, 13374 const com::Utf8Str &aValue, 13375 LONG64 aTimestamp, 13376 const com::Utf8Str &aFlags, 13377 BOOL *aNotify) 13377 13378 { 13378 13379 LogFlowThisFunc(("\n")); … … 13380 13381 #ifdef VBOX_WITH_GUEST_PROPS 13381 13382 using namespace guestProp; 13383 13384 *aNotify = FALSE; 13382 13385 13383 13386 try … … 13463 13466 Bstr(aValue).raw(), 13464 13467 Bstr(aFlags).raw()); 13468 *aNotify = TRUE; 13465 13469 } 13466 13470 } … … 14705 14709 const com::Utf8Str &aValue, 14706 14710 LONG64 aTimestamp, 14707 const com::Utf8Str &aFlags) 14711 const com::Utf8Str &aFlags, 14712 BOOL *aNotify) 14708 14713 { 14709 14714 NOREF(aName); … … 14711 14716 NOREF(aTimestamp); 14712 14717 NOREF(aFlags); 14718 NOREF(aNotify); 14713 14719 ReturnComNotImplemented(); 14714 14720 }
Note:
See TracChangeset
for help on using the changeset viewer.