Changeset 23928 in vbox for trunk/src/VBox/Main/include/MediumAttachmentImpl.h
- Timestamp:
- Oct 21, 2009 10:17:08 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MediumAttachmentImpl.h
r23914 r23928 74 74 STDMETHOD(COMGETTER(Type))(DeviceType_T *aType); 75 75 STDMETHOD(COMGETTER(Passthrough))(BOOL *aPassthrough); 76 STDMETHOD(COMSETTER(Passthrough))(BOOL aPassthrough);77 76 78 77 // unsafe inline public methods for internal purposes only (ensure there is … … 102 101 m->medium = aMedium; 103 102 m->implicit = aImplicit; 103 } 104 105 /** Must be called from under this object's write lock. */ 106 void updatePassthrough(bool aPassthrough) 107 { 108 m.backup(); 109 m->passthrough = aPassthrough; 104 110 } 105 111
Note:
See TracChangeset
for help on using the changeset viewer.