digitalmars.D.learn - run time dll loading
- Denis R <Denis_member pathlink.com> Jun 27 2005
- Trevor Parscal <trevorparscal hotmail.com> Jun 27 2005
- Denis R <denis_r telkomsa.net> Jun 28 2005
- pragma <pragma_member pathlink.com> Jun 30 2005
Hello, I was just wondering, is there already any tool/method that would allow me to give the symbol (function) name 'as-is' to get it from a freshly loaded dll, and not by first checking the decorated name under the Exports in the *.map file ?
Jun 27 2005
Denis R wrote:Hello, I was just wondering, is there already any tool/method that would allow me to give the symbol (function) name 'as-is' to get it from a freshly loaded dll, and not by first checking the decorated name under the Exports in the *.map file ?
-- Thanks, Trevor Parscal www.trevorparscal.com trevorparscal hotmail.com
Jun 27 2005
No, I only seen that example in the D docs. And, i dont think its that nice to each time look up the symbol On Mon, 27 Jun 2005 20:35:46 -0700 Trevor Parscal <trevorparscal hotmail.com> wrote:Denis R wrote:Hello, I was just wondering, is there already any tool/method that would allow me to give the symbol (function) name 'as-is' to get it from a freshly loaded dll, and not by first checking the decorated name under the Exports in the *.map file ?
-- Thanks, Trevor Parscal www.trevorparscal.com trevorparscal hotmail.com
Jun 28 2005
In article <d9p0hl$1s7h$1 digitaldaemon.com>, Denis R says...Hello, I was just wondering, is there already any tool/method that would allow me to give the symbol (function) name 'as-is' to get it from a freshly loaded dll, and not by first checking the decorated name under the Exports in the *.map file ?
Have you tried using "extern(C)" or "extern(Windows)" for your exported functions in your dll code? I forget which removes the decoration, but one of them does do this. - EricAnderton at yahoo
Jun 30 2005









Trevor Parscal <trevorparscal hotmail.com> 