So, lately I've been thinking about calling Java Methods through C/C++ but a great issue that comes is having to add jvm.dll to the path, I've been thinking wouldn't it be possible if I found the jvm.dll by getting JAVA_HOME and putting "\bin\server" or "/bin/server" in case of Linux/MacOS, then I would find it and for example on windows use LoadLibrary from Windows.h to load the function and make it work without linking anything? I can think about the possibility but I haven't been able to find the tools I need, for example which method should I load, what arguments does it have, what does it return? etc