Remove a wrong claim about windows search path

On windows systems the library search path may be adjusted portably (though thread-unsafely) with
SetDllDirectory
This commit is contained in:
Simonas Kazlauskas
2016-07-27 22:31:15 +03:00
parent a7cd14345c
commit bf799a0ff7
-3
View File
@@ -18,9 +18,6 @@ unsafe impl ::std::marker::Send for Library {}
impl Library {
/// Find and load a shared library (module).
///
/// Locations where library is searched for is platform specific and cant be adjusted
/// portably.
///
/// Corresponds to `LoadLibraryW(filename)`.
#[inline]
pub fn new<P: AsRef<OsStr>>(filename: P) -> ::Result<Library> {