(Win32 platform c++) Using __try and __finally, how can I get the module name (And address) of the cause for an exception? I call GetExceptionInformation() but from that I am not sure where this information is.
Given other resources online and in MSDN the Minidump handlers and other sample code seem to be able to get it, but I am not sure how.
Any references or more enlightening resources are appreciated.
You want to walk the callstack, as described in this CodeProject article.
Either you can use Jochen's code as it is, or try to harvest enough details to extract the information you want.