Changeset 98614 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Feb 17, 2023 1:09:38 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestProcessImpl.h
r98526 r98614 269 269 270 270 /** Wrapped @name Static run methods. 271 * @{ */ 272 static int run(GuestSession *pGuestSession, const GuestProcessStartupInfo &startupInfo, int *pvrcGuest); 273 274 static int runErrorInfo(GuestSession *pGuestSession, const GuestProcessStartupInfo &startupInfo, GuestProcessToolErrorInfo &errorInfo); 275 276 static int runEx(GuestSession *pGuestSession, const GuestProcessStartupInfo &startupInfo, 277 GuestCtrlStreamObjects *pStrmOutObjects, uint32_t cStrmOutObjects, int *pvrcGuest); 278 279 static int runExErrorInfo(GuestSession *pGuestSession, const GuestProcessStartupInfo &startupInfo, 280 GuestCtrlStreamObjects *pStrmOutObjects, uint32_t cStrmOutObjects, GuestProcessToolErrorInfo &errorInfo); 271 * @note Do not call anything 'run' here, it's way too common. 272 * @{ */ 273 static int runTool(GuestSession *pGuestSession, const GuestProcessStartupInfo &startupInfo, int *pvrcGuest, 274 GuestCtrlStreamObjects *pLstStdOutObjPairs = NULL, uint32_t cStdOutObjectsToRead = 1); 275 276 static int runToolWithErrorInfo(GuestSession *pGuestSession, const GuestProcessStartupInfo &startupInfo, 277 GuestProcessToolErrorInfo &errorInfo, 278 GuestCtrlStreamObjects *pLstStdOutObjPairs = NULL, uint32_t cStdOutObjectsToRead = 1); 281 279 /** @} */ 282 280
Note:
See TracChangeset
for help on using the changeset viewer.