Changeset 42525 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Aug 2, 2012 10:24:28 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 79695
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestCtrlImplPrivate.h
r42507 r42525 268 268 struct GuestProcessInfo 269 269 { 270 /** The process' friendly name. */ 271 Utf8Str mName; 272 /** The actual command to execute. */ 270 273 Utf8Str mCommand; 271 274 ProcessArguments mArguments; … … 275 278 ProcessPriority_T mPriority; 276 279 ProcessAffinity mAffinity; 280 277 281 }; 278 282 -
trunk/src/VBox/Main/include/GuestDirectoryImpl.h
r42084 r42525 22 22 #include "VirtualBoxBase.h" 23 23 24 class GuestSession; 25 24 26 /** 25 27 * TODO … … 41 43 DECLARE_EMPTY_CTOR_DTOR(GuestDirectory) 42 44 43 HRESULT init(void);45 int init(GuestSession *aSession, const Utf8Str &strPath); 44 46 void uninit(void); 45 47 HRESULT FinalConstruct(void); … … 51 53 STDMETHOD(COMGETTER(DirectoryName))(BSTR *aName); 52 54 53 STDMETHOD(Read)(I GuestFsObjInfo **aInfo);55 STDMETHOD(Read)(IFsObjInfo **aInfo); 54 56 /** @} */ 55 57 … … 63 65 struct Data 64 66 { 67 GuestSession *mParent; 65 68 Utf8Str mName; 66 69 ComPtr<IGuestFsObjInfo> mFsObjInfo; -
trunk/src/VBox/Main/include/GuestProcessImpl.h
r42507 r42525 116 116 /** All related callbacks to this process. */ 117 117 GuestCtrlCallbacks mCallbacks; 118 /** The process' name. */119 Utf8Str mName;120 118 /** The process start information. */ 121 119 GuestProcessInfo mProcess; -
trunk/src/VBox/Main/include/GuestSessionImpl.h
r42485 r42525 73 73 STDMETHOD(CopyFrom)(IN_BSTR aSource, IN_BSTR aDest, ComSafeArrayIn(ULONG, aFlags), IProgress **aProgress); 74 74 STDMETHOD(CopyTo)(IN_BSTR aSource, IN_BSTR aDest, ComSafeArrayIn(ULONG, aFlags), IProgress **aProgress); 75 STDMETHOD(DirectoryCreate)(IN_BSTR aPath, ULONG aMode, ULONG aFlags, IGuestDirectory **aDirectory);75 STDMETHOD(DirectoryCreate)(IN_BSTR aPath, ULONG aMode, ComSafeArrayIn(DirectoryCreateFlag_T, aFlags), IGuestDirectory **aDirectory); 76 76 STDMETHOD(DirectoryCreateTemp)(IN_BSTR aTemplate, ULONG aMode, IN_BSTR aName, IGuestDirectory **aDirectory); 77 77 STDMETHOD(DirectoryExists)(IN_BSTR aPath, BOOL *aExists); … … 124 124 * @{ */ 125 125 int directoryClose(ComObjPtr<GuestDirectory> pDirectory); 126 int directoryCreateInternal(const Utf8Str &strPath, uint32_t uMode, uint32_t uFlags, ComObjPtr<GuestDirectory> &pDirectory); 126 127 int dispatchToProcess(uint32_t uContextID, uint32_t uFunction, void *pvData, size_t cbData); 127 128 int fileClose(ComObjPtr<GuestFile> pFile);
Note:
See TracChangeset
for help on using the changeset viewer.