Re: [GD-Windows] GetProcAddress()
Brought to you by:
vexxed72
From: Alain H. <ah...@re...> - 2001-10-18 20:07:10
|
use either: SymEnumerateSymbols or SymGetSymNext. Although SymEnumerateSymbols sounds more like what you wanted. Unless you wanted the light version of COM that was suggested in a later response. ----- Original Message ----- From: "Erwin de Vries" <er...@vo...> To: "GDWindows" <gam...@li...> Sent: Tuesday, October 16, 2001 9:33 AM Subject: [GD-Windows] GetProcAddress() > Hi, > > I'm splitting our engine in several parts, and i'd like to use dll's in some > places using dynamic linking. > > Now i've created a function called MyDLLFunc(). If i want to access this > function in my main app using GetProcAddress() i specify "MyDLLFunc" as > function name, but this fails. After looking into the listing of the dll i > gave it a try to use " ?MyDLLFunc@@YAXXZ " as name. That worked. How on > earth am i supposed to export 20 functions in a decent manner? Look them up > all up in the listing? I must be doing something wrong. Could anyone help me > out? > > Thanks, > Erwin > > > _______________________________________________ > Gamedevlists-windows mailing list > Gam...@li... > https://lists.sourceforge.net/lists/listinfo/gamedevlists-windows > |