Changeset 18313 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Mar 26, 2009 1:59:14 PM (16 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/HardDiskImpl.h
r18275 r18313 256 256 HRESULT setFormat (CBSTR aFormat); 257 257 258 virtual HRESULT queryInfo( bool fWrite);258 virtual HRESULT queryInfo(); 259 259 260 260 HRESULT canClose(); … … 289 289 struct Data 290 290 { 291 Data() : type (HardDiskType_Normal), logicalSize (0), autoReset (false) 292 , implicit (false), numCreateDiffTasks (0) 293 , vdProgress (NULL) , vdDiskIfaces (NULL) {} 291 Data() 292 : type(HardDiskType_Normal), 293 logicalSize(0), 294 hddOpenMode(OpenReadWrite), 295 autoReset(false), 296 implicit(false), 297 numCreateDiffTasks(0), 298 vdProgress(NULL), 299 vdDiskIfaces(NULL) 300 {} 294 301 295 302 const Bstr format; … … 299 306 uint64_t logicalSize; /*< In MBytes. */ 300 307 308 HDDOpenMode hddOpenMode; 309 301 310 BOOL autoReset : 1; 302 311 -
trunk/src/VBox/Main/include/MediumImpl.h
r18275 r18313 143 143 144 144 virtual HRESULT setLocation (CBSTR aLocation); 145 virtual HRESULT queryInfo( bool fWrite);145 virtual HRESULT queryInfo(); 146 146 147 147 /**
Note:
See TracChangeset
for help on using the changeset viewer.