[DiscordArchive] but why would you want non-oop...?
[DiscordArchive] but why would you want non-oop...?
Archived author: Skarn • Posted: 2018-10-13T14:23:43.429000+00:00
Original source
<@283455627538333696> https://github.com/cython/cython/wiki/WrappingCPlusPlus
[Embed: cython/cython]
The most widely used Python to C compiler. Contribute to cython/cython development by creating an account on GitHub.
https://github.com/cython/cython/wiki/WrappingCPlusPlus
Archived author: Skarn • Posted: 2018-10-13T14:23:49.461000+00:00
Original source
that's what I did
Archived author: Quantam • Posted: 2018-10-13T14:24:12.652000+00:00
Original source
The big problem is that C++ implements overloading through name encoding. The TRUE name of a function is a human-unreadable string containing the given name as well as all parameters. And there is NO standard for the format of this string.
Archived author: Skarn • Posted: 2018-10-13T14:24:32.141000+00:00
Original source
it is not working with dynamic libs
Archived author: Skarn • Posted: 2018-10-13T14:24:37.671000+00:00
Original source
it is working with sources
Archived author: Skarn • Posted: 2018-10-13T14:24:42.089000+00:00
Original source
so it knows which overloading you used
Archived author: Quantam • Posted: 2018-10-13T14:24:53.157000+00:00
Original source
Right. So in your case it will work.
Archived author: Quantam • Posted: 2018-10-13T14:25:40.357000+00:00
Original source
But that's why the API is C, not C++
Archived author: Quantam • Posted: 2018-10-13T14:26:25.461000+00:00
Original source
Well, that and the fact that C functions are callable from all common languages, while C++ classes are only accessible from C++