Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用Python 2.2,一个32 位进程,但我需要从打印机加载一个64 位 dll 。这可能看起来很奇怪,但这可能吗?
一句话,没有。
ctypesusingLoadLibrary用于连接到外部 DLL,但如果您是 32 位进程,那么您将使用 32 位地址,因此无法将 64 位二进制文件映射到您的地址空间。
ctypes
LoadLibrary