G
Guest
How to handle general exception in vc++?
This is the VC++ ATL project which i openend in vc++.net.
I am using like "catch(...)
{
DWORD dw = GetLastError();
char excMsg[80];
ltoa(dw, excMsg, 10);
LogMsg(excMsg);*/
}
Is the above corerct?
will it give any problem at runtime?
will it catch all type of errors?
I am getting some error when i referred this dll in .net. but it is not
logged as i mentioned in my catch to do..
Help me..
Tx in advance.
This is the VC++ ATL project which i openend in vc++.net.
I am using like "catch(...)
{
DWORD dw = GetLastError();
char excMsg[80];
ltoa(dw, excMsg, 10);
LogMsg(excMsg);*/
}
Is the above corerct?
will it give any problem at runtime?
will it catch all type of errors?
I am getting some error when i referred this dll in .net. but it is not
logged as i mentioned in my catch to do..
Help me..
Tx in advance.