How to specify debug CRT library with VS 2010
I have an application that fails intermittently with an invalid parameter CRT function call. Both my debug build and release build have null parameters for my 开发者_运维百科invalid parameter handler. (I'm using _set_invalid_parameter_handler to replace the default.)
How can I set my project properties in VS 2010 to link with the debug CRT library and get function name and line number information from the _invalid_parameter handler?
I am using MFC in a shared DLL.
Thanks, Gerry
精彩评论