Azzera filtri
Azzera filtri

How to use a 32bit DLL in Matlab 64bit

19 visualizzazioni (ultimi 30 giorni)
Lorenzo
Lorenzo il 7 Lug 2017
Commentato: Guillaume il 7 Lug 2017
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

Risposte (2)

Walter Roberson
Walter Roberson il 7 Lug 2017
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 Commenti
Walter Roberson
Walter Roberson il 7 Lug 2017
If I understand correctly, the COM interfaces are tagged by 32 vs 64 bits and the other size cannot be accessed.
Guillaume
Guillaume il 7 Lug 2017
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.

Accedi per commentare.


Lorenzo
Lorenzo il 7 Lug 2017
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

Categorie

Scopri di più su Application Deployment in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by