Is there a way to use a 32bit NIF from a 64 bit Erlang (under Windows)?
Seems impossible, but maybe there is a way to achieve this?
Is there a way to use a 32bit NIF from a 64 bit Erlang (under Windows)?
Seems impossible, but maybe there is a way to achieve this?
My only suggestion (too silly) - you can write 32-bit out-of-proc port driver as wrapper of your NIF and run it in separate process. Of course, erlang node in this case should interact not with NIF but with external port program. But you can consider this as joke ;-)