We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
First, many thanks for making such a cool library, it makes it really easy to load dynamic libraries. Now, when I try to use
dynalo::to_native_name()
function it adds a prefix lib which I don't want it to add, all of my shared libraries are in plugins folder. How can I remove the prefix?
lib
Thanks
The text was updated successfully, but these errors were encountered:
I think you can just remove the prefix. If its a std::string, I will use std::string::substr to remove the lib
std::string
std::string::substr
std::string s = "libhello"; std::string result = s.substr(3); // "hello"
Sorry, something went wrong.
No branches or pull requests
Hi,
First, many thanks for making such a cool library, it makes it really easy to load dynamic libraries. Now, when I try to use
function it adds a prefix
lib
which I don't want it to add, all of my shared libraries are in plugins folder. How can I remove the prefix?Thanks
The text was updated successfully, but these errors were encountered: