How to Load Multiple dll files that have one header
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Vic
il 25 Giu 2015
Risposto: Philip Borghesani
il 26 Giu 2015
I have 3 dll files that I want to load and there is a header file that corresponds to all 3. Do I just use the loadlibrary('libName1','libName2', 'libName3', 'headerfile.h')? It's not working so I'm assuming not this.
0 Commenti
Risposta accettata
Philip Borghesani
il 26 Giu 2015
You need to call loadlibrary three times. It will be faster if you create a prototype file the first time or even do it once and keep track of the file for all future sessions:
loadlibrary('libname1','header','mfilename','LibPrototype') % do once
loadlibrary('libname#', @LibPrototype) % All future loads look like this
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Startup and Shutdown 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!