Changeset 99258 in vbox for trunk/src/VBox/Main
- Timestamp:
- Mar 31, 2023 2:18:22 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 156641
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestSessionImpl.h
r99252 r99258 365 365 int i_fsCreateTempViaToolbox(const Utf8Str &strTemplate, const Utf8Str &strPath, bool fDirectory, Utf8Str &strName, 366 366 uint32_t fMode, bool fSecure, int *pvrcGuest); 367 int i_fs QueryInfoViaToolbox(const Utf8Str &strPath, bool fFollowSymlinks, GuestFsObjData &objData, int *pvrcGuest);367 int i_fsObjQueryInfoViaToolbox(const Utf8Str &strPath, bool fFollowSymlinks, GuestFsObjData &objData, int *pvrcGuest); 368 368 /** @} */ 369 369 -
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r99253 r99258 2024 2024 * indicates some host side error. 2025 2025 */ 2026 int GuestSession::i_fs QueryInfoViaToolbox(const Utf8Str &strPath, bool fFollowSymlinks, GuestFsObjData &objData, int *pvrcGuest)2026 int GuestSession::i_fsObjQueryInfoViaToolbox(const Utf8Str &strPath, bool fFollowSymlinks, GuestFsObjData &objData, int *pvrcGuest) 2027 2027 { 2028 2028 /** @todo Merge this with IGuestFile::queryInfo(). */ … … 2143 2143 #endif /* VBOX_WITH_GSTCTL_TOOLBOX_AS_CMDS */ 2144 2144 { 2145 vrc = i_fs QueryInfoViaToolbox(strPath, fFollowSymlinks, objData, pvrcGuest);2145 vrc = i_fsObjQueryInfoViaToolbox(strPath, fFollowSymlinks, objData, pvrcGuest); 2146 2146 } 2147 2147
Note:
See TracChangeset
for help on using the changeset viewer.