如何从 WDM 驱动程序 CreateInstance 获取 IUnknown

发布于 2024-08-18 20:53:48 字数 276 浏览 7 评论 0原文

在文档(C++示例)中,

LUnknown* pIUnknown = CreateInstance(slot);

我尝试这个

>> import ctypes
>> print type(ctypes.cdll.lcomp.CreateInstance(0))
<type 'int'>

How to get IUNKNOWN and QueryInterface?

In documentation (C++ example)

LUnknown* pIUnknown = CreateInstance(slot);

I try this

>> import ctypes
>> print type(ctypes.cdll.lcomp.CreateInstance(0))
<type 'int'>

How to get IUNKNOWN and QueryInterface?

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

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

发布评论

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

评论(1

从来不烧饼 2024-08-25 20:53:48

我想用 ctypes 访问 COM 对象可能有点困难。我建议您查看 Mark Hammond 的 Windows 扩展中包含的 win32com。

您可以从本教程开始: http://www.boddie.org.uk/python /COM.html

我希望它有帮助

I guess that accessing COM object with ctypes might be a bit difficult. I would recommend to have a look to win32com included in the windows extensions by Mark Hammond.

You can start with this tutorial : http://www.boddie.org.uk/python/COM.html

I hope it helps

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