Is it possible to access a 64-bit dll from a 32-bit application?

前端 未结 4 1872
南旧
南旧 2020-12-06 01:35

I have a Delphi application similar to Taskbar Shuffle that includes a hook dll.

EDIT: This hook DLL communicates with the main app by sending windo

4条回答
  •  Happy的楠姐
    2020-12-06 02:25

    No, but you might be able to get around that using COM. If you run the dll inside a COM object which is running as a stand-alone process, and communicate with marshallable interfaces (eg: automation-compatible interfaces), it should work. It's not always feasible, depending on what the dll does and how extensive the integration and call surfaces are, but it is an option which should be able to make that scenario possible.

提交回复
热议问题