echo.c 217 B

123456789101112
  1. #include <windows.h>
  2. #include <wdf.h>
  3. // Minimal UMDF driver entry point
  4. NTSTATUS DriverEntry(
  5. _In_ PDRIVER_OBJECT DriverObject,
  6. _In_ PUNICODE_STRING RegistryPath
  7. )
  8. {
  9. // ...
  10. return STATUS_SUCCESS;
  11. }