| 36 | } |
| 37 | |
| 38 | bool RegistrySearcher::Cancel() { |
| 39 | if (IsRunning()) { |
| 40 | ::SetEvent(_hCancelEvent.get()); |
| 41 | _inProgress = false; |
| 42 | return true; |
| 43 | } |
| 44 | return false; |
| 45 | } |
| 46 | |
| 47 | bool RegistrySearcher::Continue() { |
| 48 | if (IsRunning()) { |
nothing calls this directly
no outgoing calls
no test coverage detected