Changeset 41914 in vbox for trunk/src/VBox/Main/include/MachineImpl.h
- Timestamp:
- Jun 26, 2012 9:17:43 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78768
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MachineImpl.h
r41371 r41914 300 300 301 301 settings::Debugging mDebugging; 302 settings::Autostart mAutostart; 302 303 }; 303 304 … … 477 478 STDMETHOD(COMGETTER(AllowTracingToAccessVM))(BOOL *pfAllow); 478 479 STDMETHOD(COMSETTER(AllowTracingToAccessVM))(BOOL fAllow); 480 STDMETHOD(COMGETTER(AutostartEnabled))(BOOL *pfEnabled); 481 STDMETHOD(COMSETTER(AutostartEnabled))(BOOL fEnabled); 482 STDMETHOD(COMGETTER(AutostartDelay))(ULONG *puDelay); 483 STDMETHOD(COMSETTER(AutostartDelay))(ULONG uDelay); 484 STDMETHOD(COMGETTER(AutostopType))(AutostopType_T *penmAutostopType); 485 STDMETHOD(COMSETTER(AutostopType))(AutostopType_T enmAutostopType); 479 486 480 487 // IMachine methods … … 795 802 const Guid &aCurSnapshotId, 796 803 Snapshot *aParentSnapshot); 797 HRESULT loadHardware(const settings::Hardware &data, const settings::Debugging *pDbg); 804 HRESULT loadHardware(const settings::Hardware &data, const settings::Debugging *pDbg, 805 const settings::Autostart *pAutostart); 798 806 HRESULT loadDebugging(const settings::Debugging *pDbg); 807 HRESULT loadAutostart(const settings::Autostart *pAutostart); 799 808 HRESULT loadStorageControllers(const settings::Storage &data, 800 809 const Guid *puuidRegistry, … … 836 845 void copyMachineDataToSettings(settings::MachineConfigFile &config); 837 846 HRESULT saveAllSnapshots(settings::MachineConfigFile &config); 838 HRESULT saveHardware(settings::Hardware &data, settings::Debugging *pDbg); 847 HRESULT saveHardware(settings::Hardware &data, settings::Debugging *pDbg, 848 settings::Autostart *pAutostart); 839 849 HRESULT saveStorageControllers(settings::Storage &data); 840 850 HRESULT saveStorageDevices(ComObjPtr<StorageController> aStorageController, … … 1206 1216 const settings::Hardware &hardware, 1207 1217 const settings::Debugging *pDbg, 1218 const settings::Autostart *pAutostart, 1208 1219 const settings::Storage &storage, 1209 1220 IN_GUID aSnapshotId,
Note:
See TracChangeset
for help on using the changeset viewer.