| 126 | }; |
| 127 | |
| 128 | struct APIStatus |
| 129 | { |
| 130 | APIStatus() = default; |
| 131 | APIStatus(bool p, bool s, rdcstr m) : presenting(p), supported(s), supportMessage(m) {} |
| 132 | bool presenting = false; |
| 133 | bool supported = false; |
| 134 | rdcstr supportMessage; |
| 135 | }; |
| 136 | |
| 137 | Capture *GetCapture(QListWidgetItem *item); |
| 138 | void AddCapture(QListWidgetItem *item, Capture *cap); |
no outgoing calls
no test coverage detected