Changeset 99739 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- May 11, 2023 1:01:08 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 157315
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r98807 r99739 11873 11873 * Destruct a status driver instance. 11874 11874 * 11875 * @returns VBox status code.11876 11875 * @param pDrvIns The driver instance data. 11877 11876 */ -
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r98278 r99739 3686 3686 * Destruct a display driver instance. 3687 3687 * 3688 * @returns VBox status code.3689 3688 * @param pDrvIns The driver instance data. 3690 3689 */ -
trunk/src/VBox/Main/src-client/DrvAudioRec.cpp
r98103 r99739 630 630 * Shuts down (closes) a recording sink, 631 631 * 632 * @returns VBox status code.633 632 * @param pSink Recording sink to shut down. 634 633 */ -
trunk/src/VBox/Main/src-client/GuestImpl.cpp
r98262 r99739 1081 1081 * Issued by the guest when a guest user changed its state. 1082 1082 * 1083 * @return IPRT status code.1084 1083 * @param aUser Guest user name. 1085 1084 * @param aDomain Domain of guest user account. Optional. -
trunk/src/VBox/Main/src-client/HGCM.cpp
r98278 r99739 469 469 } 470 470 471 /** Helper function to free a local service DLL. 472 * 473 * @return VBox code 471 /** 472 * Helper function to free a local service DLL. 474 473 */ 475 474 void HGCMService::unloadServiceDLL(void) … … 2099 2098 * @param pCmd The VBox HGCM context. 2100 2099 * @param idClient The client handle to be disconnected and deleted. 2101 * @return VBox status code.2102 2100 */ 2103 2101 void HGCMService::GuestCancelled(PPDMIHGCMPORT pHGCMPort, PVBOXHGCMCMD pCmd, uint32_t idClient) -
trunk/src/VBox/Main/src-client/KeyboardImpl.cpp
r98103 r99739 411 411 * Destruct a keyboard driver instance. 412 412 * 413 * @returns VBox status code.414 413 * @param pDrvIns The driver instance data. 415 414 */ -
trunk/src/VBox/Main/src-client/MouseImpl.cpp
r98103 r99739 1263 1263 * Destruct a mouse driver instance. 1264 1264 * 1265 * @returns VBox status code.1266 1265 * @param pDrvIns The driver instance data. 1267 1266 */ -
trunk/src/VBox/Main/src-client/RecordingInternals.cpp
r98103 r99739 32 32 33 33 #ifdef VBOX_WITH_AUDIO_RECORDING 34 34 35 /** 35 36 * Initializes a recording frame. … … 93 94 pFrame = NULL; 94 95 } 95 #endif 96 97 #endif /* VBOX_WITH_AUDIO_RECORDING */ 96 98 97 99 /** … … 113 115 * Frees a recording video frame. 114 116 * 115 * @returns VBox status code.116 117 * @param pFrame Pointer to video frame to free. The pointer will be invalid after return. 117 118 */ … … 129 130 * Frees a recording frame. 130 131 * 131 * @returns VBox status code.132 132 * @param pFrame Pointer to recording frame to free. The pointer will be invalid after return. 133 133 */
Note:
See TracChangeset
for help on using the changeset viewer.