View Single Post
Old 31st March 2022, 02:12   #2  |  Link
WolframRhodium
Registered User
 
Join Date: Jan 2016
Posts: 162
You could manually load these dlls in .vpy by
Code:
from ctypes import WinDLL
WinDLL(dll1)
WinDLL(dll2)
...
The ordering matters.
WolframRhodium is offline   Reply With Quote