Driver entry point
| 149 | |
| 150 | // Driver entry point |
| 151 | EXTERN_C NTSTATUS DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath) |
| 152 | { |
| 153 | UNREFERENCED_PARAMETER(DriverObject); |
| 154 | UNREFERENCED_PARAMETER(RegistryPath); |
| 155 | cs_winkernel_vsnprintf_test(); |
| 156 | test(); |
| 157 | return STATUS_CANCELLED; |
| 158 | } |
| 159 | |
| 160 | // This functions mimics printf() but does not return the same value as printf() |
| 161 | // would do. printf() is required to exercise regression tests. |
nothing calls this directly
no test coverage detected
searching dependent graphs…