I'm working on a project that creates dll of a cpp module and tries to call some methods from that dll using JNA.
I managed to call static methods by mapping their names (that I get from Dependency Walker) with a clearer one.
My question is, is there a way to avoid getting these weird names with "?" and "@" all around after compilation?
thank you