Subj : Re: Using Turbo Debugger and GetProcAddress To : borland.public.cpp.borlandcpp From : Greg Chicares Date : Wed Dec 15 2004 05:09 pm On 2004-12-15 3:45 PM, Corey Sellers wrote: > I am using Borland C++ version 5.01, and I have a piece of code that looks > like this: > > int FAR PASCAL (*func)( data* mydata ); > (FARPROC)func = ::GetProcAddress( hDLL, "MyFunction" ); > > if ( func ) > func( mydata ); > > The code runs fine, but there is a problem that I need to debug. However, > Turbo Debugger will not allow me to debug into the function returned from > GetProcAddress (it just steps over it), even though the associated dll has > been compiled with debug information. Everything I know about it I learned from Ed Mulroy in 1997: http://groups-beta.google.com/group/borland.public.cpp.language/browse_thread/thread/b329e3a8b2dc3ca3 That thread ought at least to give you suggest terms to search for in the newsgroup archives if it doesn't answer your question directly. .