2

Is it possible to create and send IRP read/write packets from UMDF driver to kernel-mode driver that represents the device?

Igor Mikushkin
  • 1,250
  • 16
  • 25

1 Answers1

2

It is possible via calling FormatRequestForRead/FormatRequestForWrite method of IO target and sending request. See http://msdn.microsoft.com/en-us/library/windows/hardware/ff559236(v=vs.85).aspx for example.

Igor Mikushkin
  • 1,250
  • 16
  • 25