필터 지우기
필터 지우기

How to use a 32bit DLL in Matlab 64bit

조회 수: 19 (최근 30일)
Lorenzo
Lorenzo 2017년 7월 7일
댓글: Guillaume 2017년 7월 7일
Hi, I need to interface two instrument to a matlab program. I have the 32 bit DLL of one of the instrument and the 64 bit DLL of the other. The 64 bit DLL comes with the precompiled mex and it seems to work well.
The problem is with the 32bit DLL that doesn't come with a precompiled mex. I know that this 32bit DLL has been created in VC++, I have an header file but not the source code. I tried to use the loadlibrary command but with no success (even on a 32bit version of Matlab).
I'm now searching for a workaround. My idea is to compile a VisualBasic 32bit EXE as a gateway between 64bit Matlab and 32bit DLL. Have you any idea of the smarter way I can "comunicate" withe EXE to execute some command on the instrument trough its DLL?
Thank you

답변 (2개)

Walter Roberson
Walter Roberson 2017년 7월 7일
It is not possible to call between a 32 bit program and 64 bit DLL or the other way around.
You will need to do something like create a program that just calls the DLL and forwards the results to the other program, perhaps using tcp.
  댓글 수: 4
Walter Roberson
Walter Roberson 2017년 7월 7일
If I understand correctly, the COM interfaces are tagged by 32 vs 64 bits and the other size cannot be accessed.
Guillaume
Guillaume 2017년 7월 7일
It all depends on whether the COM server is in-process (dll) or out-of-process (exe). You can talk to an out-of-process server even if it's not the same bitness. That's the whole concept of the surrogate process described in the blog post I linked above.
In the case of matlab, since it's implemented as out-of-process, yes, you can talk between the two.

댓글을 달려면 로그인하십시오.


Lorenzo
Lorenzo 2017년 7월 7일
I know that it is not possible to mix the 32 and 64 bit world. My idea is indeed to write the gateway. I'm asking if someone has a better idea and in the care of the gateway exe, if there is a better and common way to interact. My VB or VC skill are limited, and I need to understand how to make the COM connection from the VB side, for example... so any idea is welcome!
Thank you

카테고리

Help CenterFile Exchange에서 Application Deployment에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by