dynamic - Can we import and export a function from a dll -
i have dll "a.dll" exports function "int foo()". have dll "b.dll" consumes a.dll , uses function foo() , exports other functions. possible export function "int foo()" (imported a.dll) b.dll can consumed in third dll "c.dll".
i want know whether possible or not, dont want workarounds making a.dll available third dll. also, not concerned if bad design or not.
thanks patience read through.
kapil.
as a.dll exports 1 function, function available application (like b.dll uses it). c.dll capable import exported functions a.dll. additionally, might take called "export forwarding" (see url) mechanism enables 1 export functions b.dll , implemented these in a.dll (like \system32\sfc.dll exports functions forwarded \system32\sfc_os.dll)
Comments
Post a Comment