Changeset 96888 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Sep 26, 2022 7:29:50 PM (2 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r96407 r96888 228 228 HRESULT i_onStorageDeviceChange(IMediumAttachment *aMediumAttachment, BOOL aRemove, BOOL aSilent); 229 229 HRESULT i_onExtraDataChange(const Bstr &aMachineId, const Bstr &aKey, const Bstr &aVal); 230 HRESULT i_onGuestDebugControlChange(IGuestDebugControl *aGuestDebugControl); 230 231 231 232 HRESULT i_getGuestProperty(const Utf8Str &aName, Utf8Str *aValue, LONG64 *aTimestamp, Utf8Str *aFlags); -
trunk/src/VBox/Main/include/MachineImpl.h
r96407 r96888 52 52 #include "TrustedPlatformModuleImpl.h" 53 53 #include "NvramStoreImpl.h" 54 #include "GuestDebugControlImpl.h" 54 55 #ifdef VBOX_WITH_RESOURCE_USAGE_API 55 56 # include "Performance.h" … … 526 527 IsModified_TrustedPlatformModule = 0x008000, 527 528 IsModified_NvramStore = 0x010000, 529 IsModified_GuestDebugControl = 0x020000, 528 530 }; 529 531 … … 576 578 BOOL /* silent */) { return S_OK; } 577 579 virtual HRESULT i_onRecordingChange(BOOL /* aEnable */) { return S_OK; } 580 virtual HRESULT i_onGuestDebugControlChange(IGuestDebugControl * /* guestDebugControl */) { return S_OK; } 581 578 582 579 583 HRESULT i_saveRegistryEntry(settings::MachineRegistryEntry &data); … … 840 844 const ComObjPtr<GraphicsAdapter> mGraphicsAdapter; 841 845 const ComObjPtr<BandwidthControl> mBandwidthControl; 846 const ComObjPtr<GuestDebugControl> mGuestDebugControl; 842 847 843 848 const ComObjPtr<TrustedPlatformModule> mTrustedPlatformModule; … … 1035 1040 HRESULT getLogKeyId(com::Utf8Str &aKeyId); 1036 1041 HRESULT getLogKeyStore(com::Utf8Str &aKeyStore); 1042 HRESULT getGuestDebugControl(ComPtr<IGuestDebugControl> &aGuestDebugControl); 1037 1043 1038 1044 // wrapped IMachine methods … … 1433 1439 HRESULT i_onStorageDeviceChange(IMediumAttachment *aMediumAttachment, BOOL aRemove, BOOL aSilent); 1434 1440 HRESULT i_onCPUExecutionCapChange(ULONG aCpuExecutionCap); 1441 HRESULT i_onGuestDebugControlChange(IGuestDebugControl *guestDebugControl); 1435 1442 1436 1443 bool i_hasMatchingUSBFilter(const ComObjPtr<HostUSBDevice> &aDevice, ULONG *aMaskedIfs); -
trunk/src/VBox/Main/include/SessionImpl.h
r96407 r96888 123 123 HRESULT onUSBControllerChange(); 124 124 HRESULT onSharedFolderChange(BOOL aGlobal); 125 HRESULT onGuestDebugControlChange(const ComPtr<IGuestDebugControl> &aGuestDebugControl); 125 126 HRESULT onUSBDeviceAttach(const ComPtr<IUSBDevice> &aDevice, 126 127 const ComPtr<IVirtualBoxErrorInfo> &aError,
Note:
See TracChangeset
for help on using the changeset viewer.