_secerr_handler_func in VS 2005 July CTP

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Based on factors beyond my control, I am required to use the July CTP version
of Whidbey (Visual Studio 2005). That being said, I am re-compiling some
existing C++ projects within our company and am running into some problems
with changes in VS 2005 CTP that were not in the Beta 2 release.

For starters, the following typedef no longer exists: _secerr_handler_func

I suspect that this typedef was marked as deprecated in Beta 2, and is now
officially removed.

Does have anyone have information on what to use instead of this typedef, or
any background on this?

Thanks.
 
You may want to post this to the microsoft.public.dotnet.languages.vc
group.


Mattias
 
The underlying _security_error_handler function has been replaced with a
new function: __report_gsfailure.
 
Back
Top