Changeset 1077 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Feb 27, 2007 5:33:11 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MachineImpl.h
r606 r1077 142 142 RTPROCESS mPid; 143 143 144 /** current session state */144 /** Current session state */ 145 145 SessionState_T mState; 146 146 147 /** sesison machine object */ 147 /** Session type string (for indirect sessions) */ 148 Bstr mType; 149 150 /** Sesison machine object */ 148 151 ComObjPtr <SessionMachine> mMachine; 149 152 }; … … 210 213 (mName == that.mName && 211 214 mNameSync == that.mNameSync && 215 mDescription == that.mDescription && 212 216 mOSType.equalsTo (that.mOSType) && 213 217 mSnapshotFolderFull == that.mSnapshotFolderFull); 214 218 } 215 219 216 Bstr mName; 217 BOOL mNameSync; 220 Bstr mName; 221 BOOL mNameSync; 222 Bstr mDescription; 218 223 ComPtr <IGuestOSType> mOSType; 219 Bstr mSnapshotFolder;220 Bstr mSnapshotFolderFull;224 Bstr mSnapshotFolder; 225 Bstr mSnapshotFolderFull; 221 226 }; 222 227 … … 305 310 STDMETHOD(COMGETTER(Name))(BSTR *aName); 306 311 STDMETHOD(COMSETTER(Name))(INPTR BSTR aName); 312 STDMETHOD(COMGETTER(Description))(BSTR *aDescription); 313 STDMETHOD(COMSETTER(Description))(INPTR BSTR aDescription); 307 314 STDMETHOD(COMGETTER(Id))(GUIDPARAMOUT aId); 308 315 STDMETHOD(COMGETTER(OSType)) (IGuestOSType **aOSType); … … 325 332 STDMETHOD(COMGETTER(SettingsFilePath))(BSTR *filePath); 326 333 STDMETHOD(COMGETTER(SettingsModified))(BOOL *modified); 327 STDMETHOD(COMGETTER(SessionState))(SessionState_T *sessionState); 334 STDMETHOD(COMGETTER(SessionState))(SessionState_T *aSessionState); 335 STDMETHOD(COMGETTER(SessionType))(BSTR *aSessionType); 336 STDMETHOD(COMGETTER(SessionPid))(ULONG *aSessionPid); 328 337 STDMETHOD(COMGETTER(State))(MachineState_T *machineState); 329 338 STDMETHOD(COMGETTER(LastStateChange))(LONG64 *aLastStateChange);
Note:
See TracChangeset
for help on using the changeset viewer.