driver.c 188 B

1234567891011
  1. #include <ntddk.h>
  2. #include "kcsCounters.h"
  3. NTSTATUS DriverEntry(
  4. _In_ PDRIVER_OBJECT DriverObject,
  5. _In_ PUNICODE_STRING RegistryPath
  6. )
  7. {
  8. // ...
  9. return STATUS_SUCCESS;
  10. }