Subj : Re: Using Turbo Debugger and GetProcAddress To : borland.public.cpp.borlandcpp From : Ed Mulroy [TeamB] Date : Wed Dec 15 2004 05:08 pm Do View|Module In the right listbox load the symbol table for the DLL .. Ed > Corey Sellers wrote in message > news:41c0a285$1@newsgroups.borland.com... > > 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. .