Enum dynamic_reload::PlatformName
[−]
[src]
pub enum PlatformName {
No,
Yes,
}This is used to decide how the name used for add_library is to be handled.
Variants
NoLeave name as is and don't do any formating.
YesFormat the name according to standard shared library name on the platform.
⚠Be careful when using this code, it's not being tested!
Windows: foobar -> foobar.dll Linux: foobar -> libfoobar.so Mac: foobar -> libfoobar.dylib