Changeset 52248 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jul 31, 2014 7:00:11 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95331
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/SessionImpl.h
r52232 r52248 51 51 void uninit(); 52 52 53 #ifndef VBOX_WITH_GENERIC_SESSION_WATCHER54 STDMETHOD(AssignMachine)(IMachine *aMachine, LockType_T aLockType, IN_BSTR aTokenId);55 #else /* VBOX_WITH_GENERIC_SESSION_WATCHER */56 STDMETHOD(AssignMachine)(IMachine *aMachine, LockType_T aLockType, IToken *aToken);57 #endif /* VBOX_WITH_GENERIC_SESSION_WATCHER */58 59 53 private: 60 54 … … 69 63 HRESULT getPID(ULONG *aPid); 70 64 HRESULT getRemoteConsole(ComPtr<IConsole> &aConsole); 65 #ifndef VBOX_WITH_GENERIC_SESSION_WATCHER 66 HRESULT assignMachine(const ComPtr<IMachine> &aMachine, 67 LockType_T aLockType, 68 const com::Utf8Str &aTokenId); 69 #else 70 HRESULT assignMachine(const ComPtr<IMachine> &aMachine, 71 LockType_T aLockType, 72 const ComPtr<IToken> &aToken); 73 #endif /* !VBOX_WITH_GENERIC_SESSION_WATCHER */ 71 74 HRESULT assignRemoteMachine(const ComPtr<IMachine> &aMachine, 72 75 const ComPtr<IConsole> &aConsole);
Note:
See TracChangeset
for help on using the changeset viewer.