| 171 | } |
| 172 | |
| 173 | EXTERN_C |
| 174 | NTSTATUS |
| 175 | DriverEntry( |
| 176 | PDRIVER_OBJECT driver, |
| 177 | PUNICODE_STRING reg) |
| 178 | { |
| 179 | UNREFERENCED_PARAMETER(driver); |
| 180 | UNREFERENCED_PARAMETER(reg); |
| 181 | |
| 182 | //Microsoft Windows [版本 10.0.18363.592] |
| 183 | enum_create_thread_notify_routine(); |
| 184 | |
| 185 | return STATUS_UNSUCCESSFUL; |
| 186 | } |
nothing calls this directly
no test coverage detected