Changeset 89225 in vbox for trunk/src/VBox/Devices/Audio/AudioTestService.h
- Timestamp:
- May 21, 2021 1:04:46 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioTestService.h
r89215 r89225 32 32 /** The selected transport layer. */ 33 33 PCATSTRANSPORT pTransport; 34 /** Whether to terminate or not. 35 * @todo implement signals and stuff. */ 34 /** Whether server is in started state or not. */ 35 bool volatile fStarted; 36 /** Whether to terminate or not. */ 36 37 bool volatile fTerminate; 38 /** The main thread's poll set to handle new clients. */ 39 RTPOLLSET hPollSet; 37 40 /** Pipe for communicating with the serving thread about new clients. - read end */ 38 41 RTPIPE hPipeR; … … 53 56 54 57 int AudioTestSvcInit(PATSSERVER pThis); 58 int AudioTestSvcDestroy(PATSSERVER pThis); 55 59 int AudioTestSvcStart(PATSSERVER pThis); 56 60 int AudioTestSvcShutdown(PATSSERVER pThis);
Note:
See TracChangeset
for help on using the changeset viewer.