| 159 | } |
| 160 | |
| 161 | bool DriverHelper::CloseDevice() { |
| 162 | if (_hDevice) { |
| 163 | ::CloseHandle(_hDevice); |
| 164 | _hDevice = nullptr; |
| 165 | } |
| 166 | return true; |
| 167 | } |
| 168 | |
| 169 | USHORT DriverHelper::GetVersion() { |
| 170 | USHORT version = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected