0

Can anyone explain me how SetUnhandledExceptionFilter method works in minidump?

bluish
  • 26,356
  • 27
  • 122
  • 180
isuru
  • 1
  • 1

1 Answers1

2

There is some sample code to write a minidump here: http://msdn.microsoft.com/en-us/library/ee416349%28VS.85%29.aspx

Basically you call SetUnhandledExceptionFilter and pass a pointer to a function like 'GenerateDump' in that sample code. And when your app crashes it writes the dump out.

fret
  • 1,542
  • 21
  • 36