检测哪个应用程序打开了 CD-ROM

发布于 2024-10-11 02:38:26 字数 118 浏览 0 评论 0原文

我需要编写一个函数来检测发出打开 CD-ROM 的应用程序名称。基本上我需要在Windows中监听DriverChangedEvents(我知道该怎么做)。我需要你的帮助是如何找出发送打开 CD-ROM 请求的应用程序名称

I need to write a function to detect the application name that issued a cd-rom open. Basically I need to listen to DriverChangedEvents in windows(which I know how to do). What I need your help is how to figure out the application name that sent the request to open cd-rom

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只有影子陪我不离不弃 2024-10-18 02:38:26

为您的系统创建一个包装器 winmm.dll,其中包装对真实 winmm.dll 的所有访问。然后查找对 mciSendString() 的调用,其中包含“set cdaudio Door open”和“set cdaudiodoor close”等参数。

另请参阅此问题

如何将 Windows DLL 封装在您自己的 DLL 中的示例。 上述示例的来源

Create a wrapper winmm.dll for your system which wraps all access to the real winmm.dll. Then look for calls to mciSendString() with arguments like "set cdaudio door open" and "set cdaudio door closed".

Also see this question.

An example of how to wrap a Windows DLL in your own. The source for said example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文