digitalmars.D.learn - run time dll loading
- Denis R (4/4) Jun 27 2005 Hello,
- Trevor Parscal (7/14) Jun 27 2005 Have you seen how Derelict does it?
- Denis R (4/19) Jun 28 2005 No, I only seen that example in the D docs.
- pragma (5/9) Jun 30 2005 Have you tried using "extern(C)" or "extern(Windows)" for your exported
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 ?Have you seen how Derelict does it? -- 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 ?Have you seen how Derelict does it? -- 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