Changeset 98526 in vbox for trunk/src/VBox/Main/include/GuestProcessImpl.h
- Timestamp:
- Feb 10, 2023 3:10:50 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 155802
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestProcessImpl.h
r98272 r98526 229 229 * This class has to be kept to guarantee backwards-compatibility. 230 230 */ 231 class GuestProcessTool 231 class GuestProcessToolbox 232 232 { 233 233 public: 234 234 DECLARE_TRANSLATE_METHODS(GuestProcessTool) 235 235 236 GuestProcessTool (void);237 238 virtual ~GuestProcessTool (void);236 GuestProcessToolbox(void); 237 238 virtual ~GuestProcessToolbox(void); 239 239 240 240 public: … … 244 244 void uninit(void); 245 245 246 int getCurrentBlock(uint32_t uHandle, Guest ProcessStreamBlock &strmBlock);246 int getCurrentBlock(uint32_t uHandle, GuestToolboxStreamBlock &strmBlock); 247 247 248 248 int getRc(void) const; 249 249 250 250 /** Returns the stdout output from the guest process tool. */ 251 Guest ProcessStream &getStdOut(void) { return mStdOut; }251 GuestToolboxStream &getStdOut(void) { return mStdOut; } 252 252 253 253 /** Returns the stderr output from the guest process tool. */ 254 Guest ProcessStream &getStdErr(void) { return mStdErr; }254 GuestToolboxStream &getStdErr(void) { return mStdErr; } 255 255 256 256 int wait(uint32_t fToolWaitFlags, int *pvrcGuest); 257 257 258 int waitEx(uint32_t fToolWaitFlags, Guest ProcessStreamBlock *pStreamBlock, int *pvrcGuest);258 int waitEx(uint32_t fToolWaitFlags, GuestToolboxStreamBlock *pStreamBlock, int *pvrcGuest); 259 259 260 260 bool isRunning(void); … … 302 302 GuestProcessStartupInfo mStartupInfo; 303 303 /** Stream object for handling the toolbox' stdout data. */ 304 Guest ProcessStream mStdOut;304 GuestToolboxStream mStdOut; 305 305 /** Stream object for handling the toolbox' stderr data. */ 306 Guest ProcessStream mStdErr;306 GuestToolboxStream mStdErr; 307 307 }; 308 308
Note:
See TracChangeset
for help on using the changeset viewer.