Subj : Using Turbo Debugger and GetProcAddress To : borland.public.cpp.borlandcpp From : Corey Sellers Date : Wed Dec 15 2004 01:45 pm 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. Any ideas? .