Changeset 38400 in vbox for trunk/src/VBox/Main
- Timestamp:
- Aug 10, 2011 2:00:00 PM (13 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r38395 r38400 8566 8566 <interface 8567 8567 name="IGuest" extends="$unknown" 8568 uuid=" 35f75ed7-df96-4988-b246-2c103555c95d"8568 uuid="ed109b6e-0578-4b17-8ace-52646789f1a0" 8569 8569 wsmap="managed" 8570 8570 > … … 9009 9009 <desc> 9010 9010 <link to="DirectoryCreateFlag"/> flags. 9011 </desc>9012 </param>9013 </method>9014 9015 <method name="directoryExists">9016 <desc>9017 Checks if the specified directory exists and is a directory.9018 9019 <result name="VBOX_E_IPRT_ERROR">9020 Error while looking up information.9021 </result>9022 9023 </desc>9024 <param name="directory" type="wstring" dir="in">9025 <desc>9026 Full path of directory to check.9027 </desc>9028 </param>9029 <param name="userName" type="wstring" dir="in">9030 <desc>9031 User name under which the lookup will be performed; the9032 user has to exist and have the appropriate rights to access / read the9033 desired directory.9034 </desc>9035 </param>9036 <param name="password" type="wstring" dir="in">9037 <desc>9038 Password of the user account specified.9039 </desc>9040 </param>9041 <param name="exists" type="boolean" dir="return">9042 <desc>9043 True if it's a directory, false if it isn't (or doesn't exist).9044 9011 </desc> 9045 9012 </param> -
trunk/src/VBox/Main/include/GuestImpl.h
r38395 r38400 104 104 STDMETHOD(DirectoryClose)(ULONG aHandle); 105 105 STDMETHOD(DirectoryCreate)(IN_BSTR aDirectory, IN_BSTR aUsername, IN_BSTR aPassword, ULONG aMode, ULONG aFlags); 106 #if 0 106 107 STDMETHOD(DirectoryExists)(IN_BSTR aDirectory, IN_BSTR aUsername, IN_BSTR aPassword, BOOL *aExists); 108 #endif 107 109 STDMETHOD(DirectoryOpen)(IN_BSTR aDirectory, IN_BSTR aFilter, 108 110 ULONG aFlags, IN_BSTR aUsername, IN_BSTR aPassword, ULONG *aHandle); -
trunk/src/VBox/Main/src-client/GuestCtrlImplDir.cpp
r38395 r38400 203 203 } 204 204 205 #if 0 205 206 STDMETHODIMP Guest::DirectoryExists(IN_BSTR aDirectory, IN_BSTR aUsername, IN_BSTR aPassword, BOOL *aExists) 206 207 { … … 220 221 #endif 221 222 } 223 #endif 222 224 223 225 #ifdef VBOX_WITH_GUEST_CONTROL
Note:
See TracChangeset
for help on using the changeset viewer.