Changeset 63290 in vbox for trunk/src/VBox/Frontends/VBoxBalloonCtrl
- Timestamp:
- Aug 10, 2016 3:25:54 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109923
- Location:
- trunk/src/VBox/Frontends/VBoxBalloonCtrl
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBalloonCtrl/VBoxModAPIMonitor.cpp
r62493 r63290 586 586 static DECLCALLBACK(int) VBoxModAPIMonitorOnMachineRegistered(const Bstr &strUuid) 587 587 { 588 RT_NOREF(strUuid); 588 589 return VINF_SUCCESS; 589 590 } … … 591 592 static DECLCALLBACK(int) VBoxModAPIMonitorOnMachineUnregistered(const Bstr &strUuid) 592 593 { 594 RT_NOREF(strUuid); 593 595 return VINF_SUCCESS; 594 596 } 595 597 596 static DECLCALLBACK(int) VBoxModAPIMonitorOnMachineStateChanged(const Bstr &strUuid, 597 MachineState_T enmState) 598 { 598 static DECLCALLBACK(int) VBoxModAPIMonitorOnMachineStateChanged(const Bstr &strUuid, MachineState_T enmState) 599 { 600 RT_NOREF(strUuid, enmState); 599 601 return VINF_SUCCESS; 600 602 } -
trunk/src/VBox/Frontends/VBoxBalloonCtrl/VBoxModBallooning.cpp
r62471 r63290 178 178 static unsigned long balloonGetMaxSize(PVBOXWATCHDOG_MACHINE pMachine) 179 179 { 180 const ComPtr<IMachine> &rptrMachine = pMachine->machine;181 182 180 /* 183 181 * Is a maximum ballooning size set? Make sure we're within bounds. -
trunk/src/VBox/Frontends/VBoxBalloonCtrl/VBoxWatchdog.cpp
r60865 r63290 683 683 } 684 684 685 static RTEXITCODE watchdogMain( HandlerArg *a)685 static RTEXITCODE watchdogMain(/*HandlerArg *a */) 686 686 { 687 687 HRESULT rc = S_OK; … … 1180 1180 return RTEXITCODE_FAILURE; 1181 1181 1182 HandlerArg handlerArg = { argc, argv };1183 RTEXITCODE rcExit = watchdogMain( &handlerArg);1182 //HandlerArg handlerArg = { argc, argv }; 1183 RTEXITCODE rcExit = watchdogMain(/*&handlerArg*/); 1184 1184 1185 1185 NativeEventQueue::getMainEventQueue()->processEventQueue(0);
Note:
See TracChangeset
for help on using the changeset viewer.