| 145 | } |
| 146 | |
| 147 | VOID |
| 148 | loaderEvtDriverContextCleanup(_In_ WDFOBJECT DriverObject) |
| 149 | /*++ |
| 150 | Routine Description: |
| 151 | |
| 152 | Free all the resources allocated in DriverEntry. |
| 153 | |
| 154 | Arguments: |
| 155 | |
| 156 | DriverObject - handle to a WDF Driver object. |
| 157 | |
| 158 | Return Value: |
| 159 | |
| 160 | VOID. |
| 161 | |
| 162 | --*/ |
| 163 | { |
| 164 | UNREFERENCED_PARAMETER(DriverObject); |
| 165 | |
| 166 | PAGED_CODE(); |
| 167 | |
| 168 | TraceEvents(TRACE_LEVEL_INFORMATION, TRACE_DRIVER, "%!FUNC! Entry"); |
| 169 | |
| 170 | loader_fini(); |
| 171 | |
| 172 | // |
| 173 | // Stop WPP Tracing |
| 174 | // |
| 175 | WPP_CLEANUP(WdfDriverWdmGetDriverObject((WDFDRIVER)DriverObject)); |
| 176 | } |
nothing calls this directly
no test coverage detected