- Timestamp:
- Mar 30, 2010 4:06:00 PM (15 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r27823 r27834 3789 3789 * Look up a guest property in VBoxSVC's internal structures. 3790 3790 */ 3791 HRESULT Machine:: GetGuestPropertyFromService(IN_BSTR aName,3791 HRESULT Machine::getGuestPropertyFromService(IN_BSTR aName, 3792 3792 BSTR *aValue, 3793 3793 ULONG64 *aTimestamp, … … 3822 3822 * VBoxSVC. 3823 3823 */ 3824 HRESULT Machine:: GetGuestPropertyFromVM(IN_BSTR aName,3824 HRESULT Machine::getGuestPropertyFromVM(IN_BSTR aName, 3825 3825 BSTR *aValue, 3826 3826 ULONG64 *aTimestamp, … … 3860 3860 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 3861 3861 3862 HRESULT rc = GetGuestPropertyFromVM(aName, aValue, aTimestamp, aFlags);3862 HRESULT rc = getGuestPropertyFromVM(aName, aValue, aTimestamp, aFlags); 3863 3863 if (rc == E_ACCESSDENIED) 3864 3864 /* The VM is not running or the service is not (yet) accessible */ 3865 rc = GetGuestPropertyFromService(aName, aValue, aTimestamp, aFlags);3865 rc = getGuestPropertyFromService(aName, aValue, aTimestamp, aFlags); 3866 3866 return rc; 3867 3867 #endif // VBOX_WITH_GUEST_PROPS … … 3886 3886 * Set a guest property in VBoxSVC's internal structures. 3887 3887 */ 3888 HRESULT Machine:: SetGuestPropertyToService(IN_BSTR aName, IN_BSTR aValue,3888 HRESULT Machine::setGuestPropertyToService(IN_BSTR aName, IN_BSTR aValue, 3889 3889 IN_BSTR aFlags) 3890 3890 { … … 3988 3988 * VBoxSVC. 3989 3989 */ 3990 HRESULT Machine:: SetGuestPropertyToVM(IN_BSTR aName, IN_BSTR aValue,3990 HRESULT Machine::setGuestPropertyToVM(IN_BSTR aName, IN_BSTR aValue, 3991 3991 IN_BSTR aFlags) 3992 3992 { … … 4030 4030 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 4031 4031 4032 HRESULT rc = SetGuestPropertyToVM(aName, aValue, aFlags);4032 HRESULT rc = setGuestPropertyToVM(aName, aValue, aFlags); 4033 4033 if (rc == E_ACCESSDENIED) 4034 4034 /* The VM is not running or the service is not (yet) accessible */ 4035 rc = SetGuestPropertyToService(aName, aValue, aFlags);4035 rc = setGuestPropertyToService(aName, aValue, aFlags); 4036 4036 return rc; 4037 4037 #endif // VBOX_WITH_GUEST_PROPS … … 4047 4047 * Enumerate the guest properties in VBoxSVC's internal structures. 4048 4048 */ 4049 HRESULT Machine:: EnumerateGuestPropertiesInService4049 HRESULT Machine::enumerateGuestPropertiesInService 4050 4050 (IN_BSTR aPatterns, ComSafeArrayOut(BSTR, aNames), 4051 4051 ComSafeArrayOut(BSTR, aValues), … … 4107 4107 * VBoxSVC. 4108 4108 */ 4109 HRESULT Machine:: EnumerateGuestPropertiesOnVM4109 HRESULT Machine::enumerateGuestPropertiesOnVM 4110 4110 (IN_BSTR aPatterns, ComSafeArrayOut(BSTR, aNames), 4111 4111 ComSafeArrayOut(BSTR, aValues), … … 4149 4149 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 4150 4150 4151 HRESULT rc = EnumerateGuestPropertiesOnVM4151 HRESULT rc = enumerateGuestPropertiesOnVM 4152 4152 (aPatterns, ComSafeArrayOutArg(aNames), 4153 4153 ComSafeArrayOutArg(aValues), … … 4156 4156 if (rc == E_ACCESSDENIED) 4157 4157 /* The VM is not running or the service is not (yet) accessible */ 4158 rc = EnumerateGuestPropertiesInService4158 rc = enumerateGuestPropertiesInService 4159 4159 (aPatterns, ComSafeArrayOutArg(aNames), 4160 4160 ComSafeArrayOutArg(aValues), -
trunk/src/VBox/Main/include/MachineImpl.h
r27823 r27834 772 772 773 773 #ifdef VBOX_WITH_GUEST_PROPS 774 HRESULT GetGuestPropertyFromService(IN_BSTR aName, BSTR *aValue,774 HRESULT getGuestPropertyFromService(IN_BSTR aName, BSTR *aValue, 775 775 ULONG64 *aTimestamp, BSTR *aFlags); 776 HRESULT GetGuestPropertyFromVM(IN_BSTR aName, BSTR *aValue,776 HRESULT getGuestPropertyFromVM(IN_BSTR aName, BSTR *aValue, 777 777 ULONG64 *aTimestamp, BSTR *aFlags); 778 HRESULT SetGuestPropertyToService(IN_BSTR aName, IN_BSTR aValue,778 HRESULT setGuestPropertyToService(IN_BSTR aName, IN_BSTR aValue, 779 779 IN_BSTR aFlags); 780 HRESULT SetGuestPropertyToVM(IN_BSTR aName, IN_BSTR aValue,780 HRESULT setGuestPropertyToVM(IN_BSTR aName, IN_BSTR aValue, 781 781 IN_BSTR aFlags); 782 HRESULT EnumerateGuestPropertiesInService782 HRESULT enumerateGuestPropertiesInService 783 783 (IN_BSTR aPatterns, ComSafeArrayOut(BSTR, aNames), 784 784 ComSafeArrayOut(BSTR, aValues), 785 785 ComSafeArrayOut(ULONG64, aTimestamps), 786 786 ComSafeArrayOut(BSTR, aFlags)); 787 HRESULT EnumerateGuestPropertiesOnVM787 HRESULT enumerateGuestPropertiesOnVM 788 788 (IN_BSTR aPatterns, ComSafeArrayOut(BSTR, aNames), 789 789 ComSafeArrayOut(BSTR, aValues),
Note:
See TracChangeset
for help on using the changeset viewer.