the value of ESP was not properly saved across a function call.
-
"the value of ESP was not properly saved across a function call." i got this error dialog while compiling a MFC client. the MFC client is empty except for a ATL control added to the UI. the ATL control is empty too. Just as it was 1st created by the wizard. any idea what's wrong?
-
"the value of ESP was not properly saved across a function call." i got this error dialog while compiling a MFC client. the MFC client is empty except for a ATL control added to the UI. the ATL control is empty too. Just as it was 1st created by the wizard. any idea what's wrong?
Some where, some place, there is a function declaration with the wrong calling convention. Imagine if you have an exposed function in a DLL that uses the
__stdcall
calling convention, but your function pointer is declared as__cdecl
. Using the function pointer would cause this error. There's a brief MSDN Dr. GUI article on the topic http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaskdr/html/askgui08072001.asp[^] -
"the value of ESP was not properly saved across a function call." i got this error dialog while compiling a MFC client. the MFC client is empty except for a ATL control added to the UI. the ATL control is empty too. Just as it was 1st created by the wizard. any idea what's wrong?
apparently the problem is with the compiling computer. it works fine in other computers. i tried installing MS SDK, VC++ SP5, clearing up the registry... and nothing works.. haha.. will be installing a new copy of VC++ today.. thanks for all the help guys. BUnch of great ppl we have here!!!