1

I need to create a dump file for a customer program written in C.

I saw that there is a minidump for windows, is it working only on C++ ?

Is there any other solution for C language?

Thank you for your time.

eladyanai
  • 1,063
  • 2
  • 15
  • 34

1 Answers1

2

See this excellent tutorial: http://www.debuginfo.com/articles/effminidumps.html . It uses Win32 API MiniDumpWriteDump, so its pure C.

Naveen
  • 74,600
  • 47
  • 176
  • 233