Changeset 17359 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Mar 4, 2009 5:54:03 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/HardDiskImpl.h
r16873 r17359 97 97 STDMETHOD(COMGETTER(ReadOnly)) (BOOL *aReadOnly); 98 98 STDMETHOD(COMGETTER(LogicalSize)) (ULONG64 *aLogicalSize); 99 STDMETHOD(COMGETTER(AutoReset)) (BOOL *aAutoReset); 100 STDMETHOD(COMSETTER(AutoReset)) (BOOL aAutoReset); 99 101 100 102 // IHardDisk methods … … 114 116 STDMETHOD(FlattenTo) (IHardDisk *aTarget, IProgress **aProgress); 115 117 STDMETHOD(Compact) (IProgress **aProgress); 118 STDMETHOD(Reset) (IProgress **aProgress); 116 119 117 120 // public methods for internal purposes only … … 269 272 struct Data 270 273 { 271 Data() : type (HardDiskType_Normal), logicalSize (0) 274 Data() : type (HardDiskType_Normal), logicalSize (0), autoReset (false) 272 275 , implicit (false), numCreateDiffTasks (0) 273 276 , vdProgress (NULL) , vdDiskIfaces (NULL) {} … … 279 282 uint64_t logicalSize; /*< In MBytes. */ 280 283 284 BOOL autoReset : 1; 285 281 286 typedef std::map <Bstr, Bstr> PropertyMap; 282 287 PropertyMap properties;
Note:
See TracChangeset
for help on using the changeset viewer.