Changeset 46465 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jun 10, 2013 2:11:26 PM (12 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r45675 r46465 201 201 HRESULT onDragAndDropModeChange(DragAndDropMode_T aDragAndDropMode); 202 202 HRESULT onVRDEServerChange(BOOL aRestart); 203 HRESULT onVideoCaptureChange(); 203 204 HRESULT onUSBControllerChange(); 204 205 HRESULT onSharedFolderChange(BOOL aGlobal); -
trunk/src/VBox/Main/include/DisplayImpl.h
r46123 r46465 170 170 STDMETHOD(TakeScreenShotToArray)(ULONG aScreenId, ULONG width, ULONG height, ComSafeArrayOut(BYTE, aScreenData)); 171 171 STDMETHOD(TakeScreenShotPNGToArray)(ULONG aScreenId, ULONG width, ULONG height, ComSafeArrayOut(BYTE, aScreenData)); 172 STDMETHOD(EnableVideoCapture)(ComSafeArrayIn(BOOL, aScreens)); 173 STDMETHOD(DisableVideoCapture)(ComSafeArrayIn(BOOL, aScreens)); 172 STDMETHOD(EnableVideoCaptureScreens)(ComSafeArrayIn(BOOL, aScreens)); 174 173 STDMETHOD(DrawToScreen)(ULONG aScreenId, BYTE *address, ULONG x, ULONG y, ULONG width, ULONG height); 175 174 STDMETHOD(InvalidateAndUpdate)(); -
trunk/src/VBox/Main/include/MachineImpl.h
r46348 r46465 741 741 virtual HRESULT onBandwidthGroupChange(IBandwidthGroup * /* aBandwidthGroup */) { return S_OK; } 742 742 virtual HRESULT onStorageDeviceChange(IMediumAttachment * /* mediumAttachment */, BOOL /* remove */, BOOL /* silent */) { return S_OK; } 743 virtual HRESULT onVideoCaptureChange() { return S_OK; } 743 744 744 745 HRESULT saveRegistryEntry(settings::MachineRegistryEntry &data); … … 1119 1120 HRESULT onParallelPortChange(IParallelPort *parallelPort); 1120 1121 HRESULT onCPUChange(ULONG aCPU, BOOL aRemove); 1121 HRESULT onCPUExecutionCapChange(ULONG aCpuExecutionCap);1122 1122 HRESULT onVRDEServerChange(BOOL aRestart); 1123 HRESULT onVideoCaptureChange(); 1123 1124 HRESULT onUSBControllerChange(); 1124 1125 HRESULT onUSBDeviceAttach(IUSBDevice *aDevice, … … 1132 1133 HRESULT onBandwidthGroupChange(IBandwidthGroup *aBandwidthGroup); 1133 1134 HRESULT onStorageDeviceChange(IMediumAttachment *aMediumAttachment, BOOL aRemove, BOOL aSilent); 1135 HRESULT onCPUExecutionCapChange(ULONG aCpuExecutionCap); 1134 1136 1135 1137 bool hasMatchingUSBFilter(const ComObjPtr<HostUSBDevice> &aDevice, ULONG *aMaskedIfs); -
trunk/src/VBox/Main/include/SessionImpl.h
r45284 r46465 93 93 STDMETHOD(OnCPUExecutionCapChange)(ULONG aExecutionCap); 94 94 STDMETHOD(OnVRDEServerChange)(BOOL aRestart); 95 STDMETHOD(OnVideoCaptureChange)(); 95 96 STDMETHOD(OnUSBControllerChange)(); 96 97 STDMETHOD(OnSharedFolderChange)(BOOL aGlobal);
Note:
See TracChangeset
for help on using the changeset viewer.