From bf799a0ff7141835fc88821d3cbef4b34f7f09c3 Mon Sep 17 00:00:00 2001 From: Simonas Kazlauskas Date: Wed, 27 Jul 2016 22:31:15 +0300 Subject: [PATCH] Remove a wrong claim about windows search path On windows systems the library search path may be adjusted portably (though thread-unsafely) with SetDllDirectory --- src/os/windows/mod.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/os/windows/mod.rs b/src/os/windows/mod.rs index df43c4b..7fe73b2 100644 --- a/src/os/windows/mod.rs +++ b/src/os/windows/mod.rs @@ -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 can’t be adjusted - /// portably. - /// /// Corresponds to `LoadLibraryW(filename)`. #[inline] pub fn new>(filename: P) -> ::Result {