cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
Need Replacement!
Need Replacement!
May 4, 2012 at 8:34am UTC
StoneHeart
(24)
Sorry for the dumb question but is there any replacement code for below code?
__try
{
}
__except(EXCEPTION_EXECUTE_HANDLER)
{
}
Thanks in advance ;)
May 4, 2012 at 9:08am UTC
Moschops
(7244)
The standard C++ way of exception handling is with a try-catch pairing.
http://www.cplusplus.com/doc/tutorial/exceptions/
May 4, 2012 at 9:19am UTC
StoneHeart
(24)
Thanks for the reply and yea that seems to be the answer.
By the is there any workaround like using another custom code or using an api?
May 4, 2012 at 10:11am UTC
Moschops
(7244)
A workaround for what? What problem are you trying to work around?
Topic archived. No new replies allowed.