Changeset 55800 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- May 11, 2015 2:09:09 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 100238
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MachineImpl.h
r55674 r55800 149 149 SessionState_T mState; 150 150 151 /** Session type string (for indirect sessions) */152 Utf8Str m Type;151 /** Session name string (of the primary session) */ 152 Utf8Str mName; 153 153 154 154 /** Session machine object */ … … 928 928 HRESULT getSettingsModified(BOOL *aSettingsModified); 929 929 HRESULT getSessionState(SessionState_T *aSessionState); 930 HRESULT getSessionType(com::Utf8Str &aSessionType); 930 HRESULT getSessionType(SessionType_T *aSessionType); 931 HRESULT getSessionName(com::Utf8Str &aSessionType); 931 932 HRESULT getSessionPID(ULONG *aSessionPID); 932 933 HRESULT getState(MachineState_T *aState); -
trunk/src/VBox/Main/include/SessionImpl.h
r55401 r55800 5 5 6 6 /* 7 * Copyright (C) 2006-201 4Oracle Corporation7 * Copyright (C) 2006-2015 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 57 57 HRESULT getState(SessionState_T *aState); 58 58 HRESULT getType(SessionType_T *aType); 59 HRESULT getName(com::Utf8Str &aName); 60 HRESULT setName(const com::Utf8Str &aName); 59 61 HRESULT getMachine(ComPtr<IMachine> &aMachine); 60 62 HRESULT getConsole(ComPtr<IConsole> &aConsole); … … 143 145 SessionState_T mState; 144 146 SessionType_T mType; 147 Utf8Str mName; 145 148 146 149 ComPtr<IInternalMachineControl> mControl;
Note:
See TracChangeset
for help on using the changeset viewer.