Changeset 28669 in vbox
- Timestamp:
- Apr 23, 2010 5:53:01 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60540
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r28585 r28669 4020 4020 BSTR *aValue, 4021 4021 ULONG64 *aTimestamp, 4022 BSTR *aFlags) 4022 BSTR *aFlags) const 4023 4023 { 4024 4024 using namespace guestProp; … … 4053 4053 BSTR *aValue, 4054 4054 ULONG64 *aTimestamp, 4055 BSTR *aFlags) 4055 BSTR *aFlags) const 4056 4056 { 4057 4057 HRESULT rc; -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r28645 r28669 3735 3735 <interface 3736 3736 name="IInternalMachineControl" extends="$unknown" 3737 uuid=" 35d8d838-d066-447d-927a-fd93afdbec90"3737 uuid="1b61599c-0686-451c-a7b6-96761f3f0ac5" 3738 3738 internal="yes" 3739 3739 wsmap="suppress" … … 5696 5696 </method> 5697 5697 5698 <method name="getGuestProperty" >5698 <method name="getGuestProperty" const="yes"> 5699 5699 <desc> 5700 5700 Reads an entry from the machine's guest property store. … … 5730 5730 </method> 5731 5731 5732 <method name="getGuestPropertyValue" >5732 <method name="getGuestPropertyValue" const="yes"> 5733 5733 <desc> 5734 5734 Reads a value from the machine's guest property store. … … 5752 5752 </method> 5753 5753 5754 <method name="getGuestPropertyTimestamp" >5754 <method name="getGuestPropertyTimestamp" const="yes"> 5755 5755 <desc> 5756 5756 Reads a property timestamp from the machine's guest property store. -
trunk/src/VBox/Main/include/MachineImpl.h
r28585 r28669 792 792 #ifdef VBOX_WITH_GUEST_PROPS 793 793 HRESULT getGuestPropertyFromService(IN_BSTR aName, BSTR *aValue, 794 ULONG64 *aTimestamp, BSTR *aFlags) ;794 ULONG64 *aTimestamp, BSTR *aFlags) const; 795 795 HRESULT getGuestPropertyFromVM(IN_BSTR aName, BSTR *aValue, 796 ULONG64 *aTimestamp, BSTR *aFlags) ;796 ULONG64 *aTimestamp, BSTR *aFlags) const; 797 797 HRESULT setGuestPropertyToService(IN_BSTR aName, IN_BSTR aValue, 798 798 IN_BSTR aFlags);
Note:
See TracChangeset
for help on using the changeset viewer.