Changeset 71345 in vbox for trunk/src/VBox/Main/include/GuestSessionImpl.h
- Timestamp:
- Mar 15, 2018 9:45:28 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 121296
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestSessionImpl.h
r71314 r71345 501 501 inline bool i_directoryExists(uint32_t uDirID, ComObjPtr<GuestDirectory> *pDir); 502 502 int i_directoryRemoveFromList(GuestDirectory *pDirectory); 503 int i_directoryRemove Internal(const Utf8Str &strPath, uint32_t uFlags, int *pGuestRc);504 int i_directoryCreate Internal(const Utf8Str &strPath, uint32_t uMode, uint32_t uFlags, int *pGuestRc);505 int i_objectCreateTemp Internal(const Utf8Str &strTemplate, const Utf8Str &strPath, bool fDirectory,506 507 int i_directoryOpen Internal(const GuestDirectoryOpenInfo &openInfo,508 509 int i_directoryQueryInfo Internal(const Utf8Str &strPath, bool fFollowSymlinks, GuestFsObjData &objData, int *pGuestRc);503 int i_directoryRemove(const Utf8Str &strPath, uint32_t uFlags, int *pGuestRc); 504 int i_directoryCreate(const Utf8Str &strPath, uint32_t uMode, uint32_t uFlags, int *pGuestRc); 505 int i_objectCreateTemp(const Utf8Str &strTemplate, const Utf8Str &strPath, bool fDirectory, 506 Utf8Str &strName, int *pGuestRc); 507 int i_directoryOpen(const GuestDirectoryOpenInfo &openInfo, 508 ComObjPtr<GuestDirectory> &pDirectory, int *pGuestRc); 509 int i_directoryQueryInfo(const Utf8Str &strPath, bool fFollowSymlinks, GuestFsObjData &objData, int *pGuestRc); 510 510 int i_dispatchToDirectory(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb); 511 511 int i_dispatchToFile(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb); … … 515 515 inline bool i_fileExists(uint32_t uFileID, ComObjPtr<GuestFile> *pFile); 516 516 int i_fileRemoveFromList(GuestFile *pFile); 517 int i_fileRemove Internal(const Utf8Str &strPath, int *pGuestRc);518 int i_fileOpen Internal(const GuestFileOpenInfo &openInfo, ComObjPtr<GuestFile> &pFile, int *pGuestRc);519 int i_fileQueryInfo Internal(const Utf8Str &strPath, bool fFollowSymlinks, GuestFsObjData &objData, int *pGuestRc);520 int i_fileQuerySize Internal(const Utf8Str &strPath, bool fFollowSymlinks, int64_t *pllSize, int *pGuestRc);521 int i_fsQueryInfo Internal(const Utf8Str &strPath, bool fFollowSymlinks, GuestFsObjData &objData, int *pGuestRc);517 int i_fileRemove(const Utf8Str &strPath, int *pGuestRc); 518 int i_fileOpen(const GuestFileOpenInfo &openInfo, ComObjPtr<GuestFile> &pFile, int *pGuestRc); 519 int i_fileQueryInfo(const Utf8Str &strPath, bool fFollowSymlinks, GuestFsObjData &objData, int *pGuestRc); 520 int i_fileQuerySize(const Utf8Str &strPath, bool fFollowSymlinks, int64_t *pllSize, int *pGuestRc); 521 int i_fsQueryInfo(const Utf8Str &strPath, bool fFollowSymlinks, GuestFsObjData &objData, int *pGuestRc); 522 522 const GuestCredentials &i_getCredentials(void); 523 523 EventSource *i_getEventSource(void) { return mEventSource; } … … 528 528 int i_onRemove(void); 529 529 int i_onSessionStatusChange(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData); 530 int i_startSession Internal(int *pGuestRc);530 int i_startSession(int *pGuestRc); 531 531 int i_startSessionAsync(void); 532 532 static void i_startSessionThreadTask(GuestSessionTaskInternalOpen *pTask); 533 533 Guest *i_getParent(void) { return mParent; } 534 534 uint32_t i_getProtocolVersion(void) { return mData.mProtocolVersion; } 535 int i_pathRenameInternal(const Utf8Str &strSource, const Utf8Str &strDest, uint32_t uFlags, 536 int *pGuestRc); 535 int i_pathRename(const Utf8Str &strSource, const Utf8Str &strDest, uint32_t uFlags, int *pGuestRc); 537 536 int i_pathUserDocuments(Utf8Str &strPath, int *prcGuest); 538 537 int i_pathUserHome(Utf8Str &strPath, int *prcGuest); 539 538 int i_processRemoveFromList(GuestProcess *pProcess); 540 int i_processCreateEx Internal(GuestProcessStartupInfo &procInfo, ComObjPtr<GuestProcess> &pProgress);539 int i_processCreateEx(GuestProcessStartupInfo &procInfo, ComObjPtr<GuestProcess> &pProgress); 541 540 inline bool i_processExists(uint32_t uProcessID, ComObjPtr<GuestProcess> *pProcess); 542 541 inline int i_processGetByPID(ULONG uPID, ComObjPtr<GuestProcess> *pProcess);
Note:
See TracChangeset
for help on using the changeset viewer.