rust-minidump / rust-minidump

Type definitions, parsing, and analysis for the minidump file format.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can this be used from C/C++ to interpret dumps?

acidtonic opened this issue · comments

commented

Can this be used from C/C++ to interpret dumps? I wasn't sure if this is rust only or if I can call this from my C++ application that receives crash dumps to generate reports.

This includes a tool called minidump-stackwalk which you can use anywhere. You feed it minidumps and it spits out JSON. The crates themselves cannot be used from C++ unless you want to provide C++-specific bindings (which we don't have at the moment).

commented

Okay whether there were bindings is what I was wondering. I have been using the standalone just wanted to use it from an API.

Thanks :)

Renaming the issue according to the discussion, this might be worth doing given there's interest for it