Changeset 32866 in vbox for trunk/src/VBox/Main/idl
- Timestamp:
- Oct 1, 2010 2:41:42 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 66342
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r32852 r32866 7719 7719 </enum> 7720 7720 7721 <enum 7722 name="CopyFileFlag" 7723 uuid="23f79fdf-738a-493d-b80b-42d607c9b916" 7724 > 7725 <desc> 7726 Host/Guest copy flags. 7727 </desc> 7728 7729 <const name="None" value="0"> 7730 <desc>No flag set.</desc> 7731 </const> 7732 7733 <const name="Recursive" value="2"> 7734 <desc>Copy directories recursively.</desc> 7735 </const> 7736 7737 <const name="Update" value="4"> 7738 <desc>Copy only when the source file is newer than the destination file or when the destination file is missing.</desc> 7739 </const> 7740 7741 <const name="FollowLinks" value="4"> 7742 <desc>Follow symbolic links.</desc> 7743 </const> 7744 </enum> 7745 7721 7746 <interface 7722 7747 name="IGuest" extends="$unknown" 7723 uuid=" cd80e5b8-faef-4be3-8d0e-d68fee10708d"7748 uuid="6e3113ac-ed90-4864-8c2c-942c8022324d" 7724 7749 wsmap="managed" 7725 7750 > … … 8007 8032 The current process status. 8008 8033 </desc> 8034 </param> 8035 </method> 8036 8037 <method name="copyToGuest"> 8038 <desc> 8039 Copies files/directories from host to the guest. 8040 8041 <result name="VBOX_E_IPRT_ERROR"> 8042 Error while copying. 8043 </result> 8044 8045 </desc> 8046 <param name="source" type="wstring" dir="in"> 8047 <desc> 8048 Foo. 8049 </desc> 8050 </param> 8051 <param name="dest" type="wstring" dir="in"> 8052 <desc> 8053 Bar. 8054 </desc> 8055 </param> 8056 <param name="flags" type="unsigned long" dir="in"> 8057 <desc> 8058 Copy flags. 8059 </desc> 8060 </param> 8061 <param name="progress" type="IProgress" dir="return"> 8062 <desc>Progress object to track the operation completion.</desc> 8009 8063 </param> 8010 8064 </method>
Note:
See TracChangeset
for help on using the changeset viewer.