Changeset 6388 in vbox
- Timestamp:
- Jan 18, 2008 10:01:21 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 27334
- Location:
- trunk/src/VBox/Main
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl.cpp
r6387 r6388 1995 1995 1996 1996 STDMETHODIMP 1997 Console::CreateSharedFolder (INPTR BSTR aName, INPTR BSTR aHostPath, boolaWritable)1997 Console::CreateSharedFolder (INPTR BSTR aName, INPTR BSTR aHostPath, BOOL aWritable) 1998 1998 { 1999 1999 if (!aName || !aHostPath) -
trunk/src/VBox/Main/SharedFolderImpl.cpp
r6384 r6388 63 63 */ 64 64 HRESULT SharedFolder::init (Machine *aMachine, 65 const BSTR aName, const BSTR aHostPath, boolaWritable)65 const BSTR aName, const BSTR aHostPath, BOOL aWritable) 66 66 { 67 67 /* Enclose the state transition NotReady->InInit->Ready */ … … 121 121 */ 122 122 HRESULT SharedFolder::init (Console *aConsole, 123 const BSTR aName, const BSTR aHostPath, boolaWritable)123 const BSTR aName, const BSTR aHostPath, BOOL aWritable) 124 124 { 125 125 /* Enclose the state transition NotReady->InInit->Ready */ … … 149 149 */ 150 150 HRESULT SharedFolder::init (VirtualBox *aVirtualBox, 151 const BSTR aName, const BSTR aHostPath, boolaWritable)151 const BSTR aName, const BSTR aHostPath, BOOL aWritable) 152 152 { 153 153 /* Enclose the state transition NotReady->InInit->Ready */ … … 173 173 */ 174 174 HRESULT SharedFolder::protectedInit (VirtualBoxBaseWithChildrenNEXT *aParent, 175 const BSTR aName, const BSTR aHostPath, boolaWritable)175 const BSTR aName, const BSTR aHostPath, BOOL aWritable) 176 176 { 177 177 LogFlowThisFunc (("aName={%ls}, aHostPath={%ls}, aWritable={%d}\n", -
trunk/src/VBox/Main/include/ConsoleImpl.h
r6387 r6388 134 134 STDMETHOD(AttachUSBDevice) (INPTR GUIDPARAM aId); 135 135 STDMETHOD(DetachUSBDevice) (INPTR GUIDPARAM aId, IUSBDevice **aDevice); 136 STDMETHOD(CreateSharedFolder) (INPTR BSTR aName, INPTR BSTR aHostPath, boolaWritable);136 STDMETHOD(CreateSharedFolder) (INPTR BSTR aName, INPTR BSTR aHostPath, BOOL aWritable); 137 137 STDMETHOD(RemoveSharedFolder) (INPTR BSTR aName); 138 138 STDMETHOD(TakeSnapshot) (INPTR BSTR aName, INPTR BSTR aDescription, -
trunk/src/VBox/Main/include/SharedFolderImpl.h
r6384 r6388 41 41 const Bstr mName; 42 42 const Bstr mHostPath; 43 boolmWritable;43 BOOL mWritable; 44 44 }; 45 45 … … 63 63 64 64 // public initializer/uninitializer for internal purposes only 65 HRESULT init (Machine *aMachine, const BSTR aName, const BSTR aHostPath, boolaWritable);65 HRESULT init (Machine *aMachine, const BSTR aName, const BSTR aHostPath, BOOL aWritable); 66 66 HRESULT initCopy (Machine *aMachine, SharedFolder *aThat); 67 HRESULT init (Console *aConsole, const BSTR aName, const BSTR aHostPath, boolaWritable);68 HRESULT init (VirtualBox *aVirtualBox, const BSTR aName, const BSTR aHostPath, boolaWritable);67 HRESULT init (Console *aConsole, const BSTR aName, const BSTR aHostPath, BOOL aWritable); 68 HRESULT init (VirtualBox *aVirtualBox, const BSTR aName, const BSTR aHostPath, BOOL aWritable); 69 69 void uninit(); 70 70 … … 91 91 92 92 HRESULT protectedInit (VirtualBoxBaseWithChildrenNEXT *aParent, 93 const BSTR aName, const BSTR aHostPath, boolaWritable);93 const BSTR aName, const BSTR aHostPath, BOOL aWritable); 94 94 95 95 private:
Note:
See TracChangeset
for help on using the changeset viewer.