RAII wrapper for `SC_HANDLE` that calls `CloseServiceHandle` on drop.
| 62 | |
| 63 | /// RAII wrapper for `SC_HANDLE` that calls `CloseServiceHandle` on drop. |
| 64 | struct ScHandle(SC_HANDLE); |
| 65 | |
| 66 | impl Drop for ScHandle { |
| 67 | fn drop(&mut self) { |
no outgoing calls
no test coverage detected