Keno, I'm afraid it won't (though I didn't try yet due to the long build time)
I had already tried with the variation around the unix vs windows path names.
julia> lili=dlopen("/c/SVN/mironeWC/zlib1_w32.dll")
could not load module /c/SVN/mironeWC/zlib1_w32.dll (-1): The specified module could not be found.
And even if I copy the dll to the julia's root dir I still get the same error
julia> lili=dlopen("zlib1_w32.dll")
could not load module zlib1_w32.dll (-1): The specified module could not be found.
but I'm puzzled with the meaning of the error message, I get exactly the same one if try to open a non existing file
julia> lili=dlopen("zlib1_w32_.dll")
could not load module zlib1_w32_.dll (-1): The specified module could not be found.
Something else is going on?
Joaquim