Changeset 42569 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Aug 3, 2012 9:52:23 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 79746
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MachineImpl.h
r42551 r42569 673 673 674 674 /** 675 * Checks if this machine is accessible, without attempting to load the 676 * config file. 677 * 678 * @note This method doesn't check this object's readiness. Intended to be 679 * used by ready Machine children (whose readiness is bound to the parent's 680 * one) or after doing addCaller() manually. 675 * Returns various information about this machine. 676 * 677 * @note This method doesn't lock this object or check its readiness. 678 * Intended to be used only after doing addCaller() manually and locking it 679 * for reading. 681 680 */ 682 681 ChipsetType_T getChipsetType() const { return mHWData->mChipsetType; } … … 688 687 void allowStateModification() { mData->m_fAllowStateModification = true; } 689 688 void disallowStateModification() { mData->m_fAllowStateModification = false; } 689 690 const StringsList &getGroups() const { return mUserData->s.llGroups; } 690 691 691 692 // callback handlers -
trunk/src/VBox/Main/include/VirtualBoxImpl.h
r42210 r42569 137 137 STDMETHOD(RegisterMachine)(IMachine *aMachine); 138 138 STDMETHOD(FindMachine)(IN_BSTR aNameOrId, IMachine **aMachine); 139 STDMETHOD(GetMachinesByGroups)(ComSafeArrayIn(IN_BSTR, aGroups), ComSafeArrayOut(IMachine *, aMachines)); 139 140 STDMETHOD(GetMachineStates)(ComSafeArrayIn(IMachine *, aMachines), ComSafeArrayOut(MachineState_T, aStates)); 140 141 STDMETHOD(CreateAppliance)(IAppliance **anAppliance);
Note:
See TracChangeset
for help on using the changeset viewer.