• <tfoot id='7VSF3'></tfoot>
  • <i id='7VSF3'><tr id='7VSF3'><dt id='7VSF3'><q id='7VSF3'><span id='7VSF3'><b id='7VSF3'><form id='7VSF3'><ins id='7VSF3'></ins><ul id='7VSF3'></ul><sub id='7VSF3'></sub></form><legend id='7VSF3'></legend><bdo id='7VSF3'><pre id='7VSF3'><center id='7VSF3'></center></pre></bdo></b><th id='7VSF3'></th></span></q></dt></tr></i><div id='7VSF3'><tfoot id='7VSF3'></tfoot><dl id='7VSF3'><fieldset id='7VSF3'></fieldset></dl></div>

      1. <legend id='7VSF3'><style id='7VSF3'><dir id='7VSF3'><q id='7VSF3'></q></dir></style></legend>
          <bdo id='7VSF3'></bdo><ul id='7VSF3'></ul>

        <small id='7VSF3'></small><noframes id='7VSF3'>

        如何从 Python 中的 SXS 加载 C DLL?

        How do I load a C DLL from the SXS in Python?(如何从 Python 中的 SXS 加载 C DLL?)

              <tfoot id='PjzFy'></tfoot>
              • <legend id='PjzFy'><style id='PjzFy'><dir id='PjzFy'><q id='PjzFy'></q></dir></style></legend>
                  <tbody id='PjzFy'></tbody>
              • <small id='PjzFy'></small><noframes id='PjzFy'>

                <i id='PjzFy'><tr id='PjzFy'><dt id='PjzFy'><q id='PjzFy'><span id='PjzFy'><b id='PjzFy'><form id='PjzFy'><ins id='PjzFy'></ins><ul id='PjzFy'></ul><sub id='PjzFy'></sub></form><legend id='PjzFy'></legend><bdo id='PjzFy'><pre id='PjzFy'><center id='PjzFy'></center></pre></bdo></b><th id='PjzFy'></th></span></q></dt></tr></i><div id='PjzFy'><tfoot id='PjzFy'></tfoot><dl id='PjzFy'><fieldset id='PjzFy'></fieldset></dl></div>

                  <bdo id='PjzFy'></bdo><ul id='PjzFy'></ul>
                • 本文介绍了如何从 Python 中的 SXS 加载 C DLL?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  这通常通过在可执行文件所在的清单文件中指定 DLL 依赖项来完成.但是,我不知道如何在 Python 中完成此操作.加载 DLL 不是问题,问题在于在 SXS 中找到合适的 DLL 来加载.

                  This is typically done by specifying the DLL dependency in a manifest file that resides with the executable. However, I don't know how to accomplish this in Python. Loading the DLL isn't an issue, but rather finding the appropriate DLL in the SXS to load is the problem.

                  是否有标准程序来指定在哪里可以找到 DLL?对于这个例子,我们假设它住在这里:

                  Is there a standard procedure for specifying where to find the DLL ? For this example let's assume it lives here:

                  c:windowswinsxsamd64_my_handy_lib_<public_key_token>_1.0.0.0_none_<some_ID>
                  

                  我真的需要手动搜索 c:windowswinsxs 目录以按名称查找我的 DLL,然后检查父目录是否包含正确的版本?

                  Do I REALLY need to manually search the c:windowswinsxs directory looking for my DLL by name, then check the parent directory to see if it contains the correct version?

                  我只是做的 Python 项目不够多,所以不知道什么是实现这一目标的合适方法.

                  I just don't do Python projects enough to know what the appropriate way to accomplish this.

                  推荐答案

                  这是从 WinSxS 目录加载 CRT 的示例.

                  Here's an example that loads the CRT from the WinSxS directory.

                  actctx.manifest:

                  <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
                  <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
                      <dependency>
                          <dependentAssembly>
                              <assemblyIdentity
                                  type="win32"
                                  name="Microsoft.VC90.CRT"
                                  version="9.0.21022.8"
                                  processorArchitecture="amd64"
                                  publicKeyToken="1fc8b3b9a1e18e3b">
                              </assemblyIdentity>
                          </dependentAssembly>
                      </dependency>
                  </assembly>
                  

                  actctx.py:

                  from ctypes import *
                  from ctypes.wintypes import *
                  
                  kernel32 = WinDLL("kernel32", use_last_error=True)
                  
                  ACTCTX_FLAG_PROCESSOR_ARCHITECTURE_VALID = 0x001
                  ACTCTX_FLAG_LANGID_VALID = 0x002
                  ACTCTX_FLAG_ASSEMBLY_DIRECTORY_VALID = 0x004
                  ACTCTX_FLAG_RESOURCE_NAME_VALID = 0x008
                  ACTCTX_FLAG_SET_PROCESS_DEFAULT = 0x010
                  ACTCTX_FLAG_APPLICATION_NAME_VALID = 0x020
                  ACTCTX_FLAG_HMODULE_VALID = 0x080
                  DEACTIVATE_ACTCTX_FLAG_FORCE_EARLY_DEACTIVATION = 1
                  
                  INVALID_HANDLE_VALUE = HANDLE(-1).value
                  ULONG_PTR = WPARAM  # pointer-sized unsigned integer
                  
                  class ACTCTX(Structure):
                      _fields_ = (("cbSize", ULONG),
                                  ("dwFlags", DWORD),
                                  ("lpSource", LPCWSTR),
                                  ("wProcessorArchitecture", USHORT),
                                  ("wLangId", LANGID),
                                  ("lpAssemblyDirectory", LPCWSTR),
                                  ("lpResourceName", LPCWSTR),
                                  ("lpApplicationName", LPCWSTR),
                                  ("hModule", HMODULE))
                  
                      def __init__(self, *args, **kwds):
                          super(ACTCTX, self).__init__(sizeof(self), *args, **kwds)
                  
                  CreateActCtxW = kernel32.CreateActCtxW
                  CreateActCtxW.restype = HANDLE
                  CreateActCtxW.argtypes = (POINTER(ACTCTX),)
                  ReleaseActCtx = kernel32.ReleaseActCtx
                  ReleaseActCtx.restype = None
                  ReleaseActCtx.argtypes = (HANDLE,)
                  ActivateActCtx = kernel32.ActivateActCtx
                  ActivateActCtx.argtypes = (HANDLE, POINTER(ULONG_PTR))
                  DeactivateActCtx = kernel32.DeactivateActCtx
                  DeactivateActCtx.argtypes = (DWORD, ULONG_PTR)
                  
                  if __name__ == "__main__":
                      manifest_path = "actctx.manifest" # keep ref
                      ctx = ACTCTX(lpSource=manifest_path)
                      hActCtx = CreateActCtxW(byref(ctx))
                      if hActCtx == INVALID_HANDLE_VALUE:
                          raise WinError(get_last_error())
                  
                      cookie = ULONG_PTR()
                      if not ActivateActCtx(hActCtx, byref(cookie)):
                          raise WinError()
                      msvcr90 = CDLL("msvcr90")
                      if not DeactivateActCtx(0, cookie):
                          raise WinError(get_last_error())
                  
                      ReleaseActCtx(hActCtx)
                  
                      # show DLL path
                      hModule = HANDLE(msvcr90._handle)
                      path = (c_wchar * 260)()    
                      kernel32.GetModuleFileNameW(hModule, path, len(path))
                      print(path.value)
                  

                  输出:

                  C:WindowsWinSxSamd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_08e61857a83bc251msvcr90.DLL
                  

                  <小时>

                  这是在 Python 3.4.2 下测试的,Python 3.4.2 是用 VS 2010 构建的,而是与 msvcr100.dll 链接.因此,至少在这种情况下,确实需要设置激活上下文,否则加载 msvcr90.dll 将失败并显示 ERROR_MOD_NOT_FOUND.

                  这篇关于如何从 Python 中的 SXS 加载 C DLL?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  What is inside .lib file of Static library, Statically linked dynamic library and dynamically linked dynamic library?(静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么?)
                  Can Cython code be compiled to a dll so C++ application can call it?(Cython 代码可以编译成 dll 以便 C++ 应用程序可以调用它吗?)
                  Delay Loading DLLs(延迟加载 DLL)
                  Throwing C++ exceptions across DLL boundaries(跨 DLL 边界抛出 C++ 异常)
                  Loading a dll from a dll?(从 dll 加载 dll?)
                  C++11 std::mutex in Visual Studio 2012 deadlock when locked from DllMain()(当从 DllMain() 锁定时,Visual Studio 2012 中的 C++11 std::mutex 会死锁)
                    <tbody id='KzJiA'></tbody>

                    <i id='KzJiA'><tr id='KzJiA'><dt id='KzJiA'><q id='KzJiA'><span id='KzJiA'><b id='KzJiA'><form id='KzJiA'><ins id='KzJiA'></ins><ul id='KzJiA'></ul><sub id='KzJiA'></sub></form><legend id='KzJiA'></legend><bdo id='KzJiA'><pre id='KzJiA'><center id='KzJiA'></center></pre></bdo></b><th id='KzJiA'></th></span></q></dt></tr></i><div id='KzJiA'><tfoot id='KzJiA'></tfoot><dl id='KzJiA'><fieldset id='KzJiA'></fieldset></dl></div>
                    <tfoot id='KzJiA'></tfoot>

                  1. <small id='KzJiA'></small><noframes id='KzJiA'>

                    • <legend id='KzJiA'><style id='KzJiA'><dir id='KzJiA'><q id='KzJiA'></q></dir></style></legend>
                        <bdo id='KzJiA'></bdo><ul id='KzJiA'></ul>