Re: a question for rust users, any way to use a dll in a rust project?

2019-08-03 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: a question for rust users, any way to use a dll in a rust project? If its written in rust, and your project is in rust, then using FFI with that is useless (unless your trying to make a module/plug-in system). If its not, though, then its a bit trickier, and involves a bit more work

Re: a question for rust users, any way to use a dll in a rust project?

2019-08-03 Thread AudioGames . net Forum — Developers room : Ty via Audiogames-reflector
Re: a question for rust users, any way to use a dll in a rust project? Same as 3, I don't think you have to make it a dll, just include it. URL: https://forum.audiogames.net/post/452904/#p452904 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com

Re: a question for rust users, any way to use a dll in a rust project?

2019-08-03 Thread AudioGames . net Forum — Developers room : keithwipf1 via Audiogames-reflector
Re: a question for rust users, any way to use a dll in a rust project? I'm not sure you need to compile it into a DLL in order to use it.More likely, you can just include it, into the main program. I'm not sure what the syntax is, but it'd probably be something like "m

Re: a question for rust users, any way to use a dll in a rust project?

2019-08-03 Thread AudioGames . net Forum — Developers room : nolan via Audiogames-reflector
Re: a question for rust users, any way to use a dll in a rust project? If both units of code are in Rust, it'd be far better for one to just depend on another. If you're really compiling something into a DLL, you're likely exporting a C-compatible interface, and it doesn&

a question for rust users, any way to use a dll in a rust project?

2019-08-02 Thread AudioGames . net Forum — Developers room : SkyGuardian via Audiogames-reflector
a question for rust users, any way to use a dll in a rust project? so, i started learning Rust about a weak ago, i have made an experimental dll, would there be any way for me to use this dll inside of my main rust executable? i googled it but found nothing on the subject, this is why i