PDA

View Full Version : what does it stand for ?


comlysouthchina
May 15th, 2004, 06:58
Hi All

I use OllyDBG to load a executable file ,during loading the OllyDBG will show a MessageBox Dialog. It has the hint '
The prodedure entry point _setmbc could not be located in the dynamic link librray MSVCRTD.DLL' . What does it stand for ?

focht
May 15th, 2004, 10:43
Greetings,

the program (debuggee) has a binding to microsoft C-runtime library (debug version).
Seems your system's msvrtd.dll is a different one than the program was linked to (import library).
Just make sure the program gets the right C-runtime dlls or try to rebuild the source with correct import library version.

Regards