Changeset 93035 in vbox
- Timestamp:
- Dec 21, 2021 9:28:05 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 149038
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r92987 r93035 1036 1036 * Unregisters a directory object from a guest session. 1037 1037 * 1038 * @return VBox status code. VERR_NOT_FOUND if the directory is not registered (anymore). 1039 * @param pDirectory Directory object to unregister from session. 1038 * @returns VBox status code. VERR_NOT_FOUND if the directory is not registered (anymore). 1039 * @param pDirectory Directory object to unregister from session. 1040 * 1041 * @note Takes the write lock. 1040 1042 */ 1041 1043 int GuestSession::i_directoryUnregister(GuestDirectory *pDirectory) … … 1494 1496 * Unregisters a file object from a guest session. 1495 1497 * 1496 * @return VBox status code. VERR_NOT_FOUND if the file is not registered (anymore). 1497 * @param pFile File object to unregister from session. 1498 * @returns VBox status code. VERR_NOT_FOUND if the file is not registered (anymore). 1499 * @param pFile File object to unregister from session. 1500 * 1501 * @note Takes the write lock. 1498 1502 */ 1499 1503 int GuestSession::i_fileUnregister(GuestFile *pFile) … … 1591 1595 * @param prcGuest Where to return the guest error when VERR_GSTCTL_GUEST_ERROR 1592 1596 * was returned. Optional. 1597 * 1598 * @note Takes the write lock. 1593 1599 */ 1594 1600 int GuestSession::i_fileOpenEx(const com::Utf8Str &aPath, FileAccessMode_T aAccessMode, FileOpenAction_T aOpenAction, … … 1620 1626 * @param prcGuest Where to return the guest error when VERR_GSTCTL_GUEST_ERROR 1621 1627 * was returned. Optional. 1628 * 1629 * @note Takes the write lock. 1622 1630 */ 1623 1631 int GuestSession::i_fileOpen(const GuestFileOpenInfo &openInfo, ComObjPtr<GuestFile> &pFile, int *prcGuest) … … 2367 2375 * 2368 2376 * @returns VBox status code. 2377 * 2378 * @note Takes the write lock. 2369 2379 */ 2370 2380 int GuestSession::i_objectsUnregister(void) … … 2505 2515 * Returns the user's absolute documents path, if any. 2506 2516 * 2507 * @return VBox status code.2508 * @param strPathWhere to store the user's document path.2509 * @param prcGuestGuest rc, when returning VERR_GSTCTL_GUEST_ERROR.2517 * @returns VBox status code. 2518 * @param strPath Where to store the user's document path. 2519 * @param prcGuest Guest rc, when returning VERR_GSTCTL_GUEST_ERROR. 2510 2520 * Any other return code indicates some host side error. 2521 * 2522 * @note Takes the write lock. 2511 2523 */ 2512 2524 int GuestSession::i_pathUserDocuments(Utf8Str &strPath, int *prcGuest) … … 2555 2567 * Returns the user's absolute home path, if any. 2556 2568 * 2557 * @return VBox status code.2558 * @param strPathWhere to store the user's home path.2559 * @param prcGuestGuest rc, when returning VERR_GSTCTL_GUEST_ERROR.2569 * @returns VBox status code. 2570 * @param strPath Where to store the user's home path. 2571 * @param prcGuest Guest rc, when returning VERR_GSTCTL_GUEST_ERROR. 2560 2572 * Any other return code indicates some host side error. 2573 * 2574 * @note Takes the write lock. 2561 2575 */ 2562 2576 int GuestSession::i_pathUserHome(Utf8Str &strPath, int *prcGuest) … … 2605 2619 * Unregisters a process object from a guest session. 2606 2620 * 2607 * @return VBox status code. VERR_NOT_FOUND if the process is not registered (anymore). 2608 * @param pProcess Process object to unregister from session. 2621 * @returns VBox status code. VERR_NOT_FOUND if the process is not registered (anymore). 2622 * @param pProcess Process object to unregister from session. 2623 * 2624 * @note Takes the write lock. 2609 2625 */ 2610 2626 int GuestSession::i_processUnregister(GuestProcess *pProcess) … … 2658 2674 * starting the process. 2659 2675 * 2660 * @return IPRT status code. 2661 * @param procInfo 2662 * @param pProcess 2676 * @returns IPRT status code. 2677 * @param procInfo Process startup info to use for starting the process. 2678 * @param pProcess Where to return the created guest process object on success. 2679 * 2680 * @note Takes the write lock. 2663 2681 */ 2664 2682 int GuestSession::i_processCreateEx(GuestProcessStartupInfo &procInfo, ComObjPtr<GuestProcess> &pProcess) … … 2935 2953 * 2936 2954 * @returns VBox status code. VERR_NOT_SUPPORTED if not supported by Guest Additions. 2937 * @param fFlagsGuest shutdown flags.2938 * @param prcGuestGuest rc, when returning VERR_GSTCTL_GUEST_ERROR.2955 * @param fFlags Guest shutdown flags. 2956 * @param prcGuest Guest rc, when returning VERR_GSTCTL_GUEST_ERROR. 2939 2957 * Any other return code indicates some host side error. 2958 * 2959 * @note Takes the write lock. 2940 2960 */ 2941 2961 int GuestSession::i_shutdown(uint32_t fFlags, int *prcGuest)
Note:
See TracChangeset
for help on using the changeset viewer.