将DLL从Python加载到单独的进程

时间:2015-04-25 00:03:49

标签: python dll ctypes loadlibrary

我想将Python中的DLL加载到与运行Python的进程不同的进程中。 df.sort_index(axis=1, level=0, inplace=True) ctypes.LoadLibrary

我想要的是能够调用Load a shared library into the process and return it. This method always returns a new instance of the library.之类的东西,但是在一个单独的进程上加载DLL,然后可以被许多其他进程访问,而不会妨碍Python进程的操作或阻碍DLL操作的Python进程。 这可能通过Python构造吗?如果不是其他潜在的解决方案呢?

我使用Python 2.7.3运行Windows 7

0 个答案:

没有答案