Changeset 13713 in vbox for trunk/src/VBox/Main/MachineImpl.cpp
- Timestamp:
- Oct 31, 2008 1:35:03 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38680
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r13696 r13713 3828 3828 * 3829 3829 * @param aMachine Session machine object. 3830 * @param aIPCSem Mutex IPC semaphore handle for this machine. 3830 * @param aControl Direct session control object (optional). 3831 * @param aIPCSem Mutex IPC semaphore handle for this machine (optional). 3831 3832 * 3832 3833 * @note locks this object for reading. … … 3834 3835 #if defined (RT_OS_WINDOWS) 3835 3836 bool Machine::isSessionOpen (ComObjPtr <SessionMachine> &aMachine, 3837 ComPtr <IInternalSessionControl> *aControl /*= NULL*/, 3836 3838 HANDLE *aIPCSem /*= NULL*/, 3837 3839 bool aAllowClosing /*= false*/) 3838 3840 #elif defined (RT_OS_OS2) 3839 3841 bool Machine::isSessionOpen (ComObjPtr <SessionMachine> &aMachine, 3842 ComPtr <IInternalSessionControl> *aControl /*= NULL*/, 3840 3843 HMTX *aIPCSem /*= NULL*/, 3841 3844 bool aAllowClosing /*= false*/); 3842 3845 #else 3843 3846 bool Machine::isSessionOpen (ComObjPtr <SessionMachine> &aMachine, 3847 ComPtr <IInternalSessionControl> *aControl /*= NULL*/, 3844 3848 bool aAllowClosing /*= false*/) 3845 3849 #endif … … 3860 3864 3861 3865 aMachine = mData->mSession.mMachine; 3866 3867 if (aControl != NULL) 3868 *aControl = mData->mSession.mDirectControl; 3862 3869 3863 3870 #if defined (RT_OS_WINDOWS) || defined (RT_OS_OS2)
Note:
See TracChangeset
for help on using the changeset viewer.