Changeset 2602 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- May 12, 2007 8:01:48 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/BIOSSettingsImpl.h
r1217 r2602 45 45 mACPIEnabled = true; 46 46 mIOAPICEnabled = false; 47 mTimeOffset = 0; 47 48 } 48 49 … … 56 57 mBootMenuMode == that.mBootMenuMode && 57 58 mACPIEnabled == that.mACPIEnabled && 58 mIOAPICEnabled == that.mIOAPICEnabled); 59 mIOAPICEnabled == that.mIOAPICEnabled && 60 mTimeOffset == that.mTimeOffset); 59 61 } 60 62 … … 66 68 BOOL mACPIEnabled; 67 69 BOOL mIOAPICEnabled; 70 LONG64 mTimeOffset; 68 71 }; 69 72 … … 102 105 STDMETHOD(COMGETTER(IOAPICEnabled))(BOOL *enabled); 103 106 STDMETHOD(COMSETTER(IOAPICEnabled))(BOOL enable); 107 STDMETHOD(COMGETTER)(TimeOffset)(LONG64 *offset); 108 STDMETHOD(COMSETTER)(TimeOffset)(LONG64 offset); 104 109 105 110 // public methods only for internal purposes
Note:
See TracChangeset
for help on using the changeset viewer.