CxxWrap module rely on external dll

Hi.
Is it possible to develop CxxWrap module which depend on dll lib?
Since we directly load dll in jl file and one dll cant load another.

module CppTypes
    using CxxWrap
    @wrapmodule(() -> "libcore.dll", :define_julia_module)

    function __init__()
        @initcxx
    end
end

For example my module could use some special numerical library via dll.

It seem possible to use dll by embedding julia bindings into exe (JLuna seems to allow bindings within exe which could load dlls and of cource Julia allow to bind functions and structures, which is rather difficult)
Sad, but CxxWrap could not work this way.

Try out to load dll manually and come back with solution, if dll could be found by path (i place it near module dll) everything works perfect.