3

我目前正在使用 CPython 的 win32com 模块来使用 DLL。我知道有些人使用 IronPython 自动获取此 DLL 提供的函数列表。他们不需要注册 DLL。

我想和他们做同样的事情,但使用 CPython。

1)是否可以使用 CPython 和 win32com 连接到无 dll 注册。如何使其免注册?

2)如何获取DLL提供的函数列表?我想创建一个提供完整函数列表的 CPython 模块。

任何想法?

4

1 回答 1

1

This kind of information is hard, very very hard to find information about. I am attempting to find the same but for Ruby, however I expect that the same issue will occur. Ultimately, however, a Manifest file is required, and at least during development, it may help to register the .dll anyway, and then work on making it registration free (with a manifest file)

于 2012-12-05T07:20:53.270 回答