Changeset 83286 in vbox for trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.h
- Timestamp:
- Mar 13, 2020 3:35:35 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.h
r82968 r83286 179 179 * (VBOXSERVICECTRLPROCESS). */ 180 180 RTLISTANCHOR lstProcesses; 181 /** Number of guest processes in the process list. */ 182 uint32_t cProcesses; 181 183 /** List of guest control files (VBOXSERVICECTRLFILE). */ 182 184 RTLISTANCHOR lstFiles; 185 /** Number of guest files in the file list. */ 186 uint32_t cFiles; 183 187 /** The session's critical section. */ 184 188 RTCRITSECT CritSect; … … 278 282 RTPIPE hPipeStdOutR; 279 283 /** StdOut pipe for addressing reads from 280 * guest process' std out.*/284 * guest process' stderr.*/ 281 285 RTPIPE hPipeStdErrR; 282 286 … … 317 321 extern int VGSvcGstCtrlSessionProcessAdd(PVBOXSERVICECTRLSESSION pSession, PVBOXSERVICECTRLPROCESS pProcess); 318 322 extern int VGSvcGstCtrlSessionProcessRemove(PVBOXSERVICECTRLSESSION pSession, PVBOXSERVICECTRLPROCESS pProcess); 319 extern int VGSvcGstCtrlSessionProcessStartAllowed(const PVBOXSERVICECTRLSESSION pSession, bool *p bAllowed);323 extern int VGSvcGstCtrlSessionProcessStartAllowed(const PVBOXSERVICECTRLSESSION pSession, bool *pfAllowed); 320 324 extern int VGSvcGstCtrlSessionReapProcesses(PVBOXSERVICECTRLSESSION pSession); 321 325 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.