在驱动程序和 Windows 服务之间传递数据
将数据从设备驱动程序传递到 Windows 服务并返回的最干净的方法是什么?
What is the cleanest way to pass data from device driver to windows service and back?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这通常是使用 设备输入和输出控制 ( IOCTL)。
您可以定义自己的私有控制代码,然后双向发送信息。该函数是从用户模式调用的,即您的情况下的服务。
This is normally achieved using Device Input and Output Control (IOCTL).
You can define your own private control code and then send information in both directions. The function is called from user mode, i.e. the service in your case.