Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 61431
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T18:19:05+00:00 2026-05-10T18:19:05+00:00

I currently capture MiniDumps of unhandled exceptions using SetUnhandledExceptionFilter however at times I am

  • 0

I currently capture MiniDumps of unhandled exceptions using SetUnhandledExceptionFilter however at times I am getting ‘R6025: pure virtual function’.

I understand how a pure virtual function call happens I am just wondering if it is possible to capture them so I can create a MiniDump at that point.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T18:19:06+00:00Added an answer on May 10, 2026 at 6:19 pm

    If you want to catch all crashes you have to do more than just: SetUnhandledExceptionFilter

    I would also set the abort handler, the purecall handler, unexpected, terminate, and invalid parameter handler.

    #include <signal.h>  inline void signal_handler(int) {     terminator(); }  inline void terminator()  {     int*z = 0; *z=13;  }  inline void __cdecl invalid_parameter_handler(const wchar_t *, const wchar_t *, const wchar_t *, unsigned int, uintptr_t) {    terminator(); }  

    And in your main put this:

     signal(SIGABRT, signal_handler);  _set_abort_behavior(0, _WRITE_ABORT_MSG|_CALL_REPORTFAULT);   set_terminate( &terminator );  set_unexpected( &terminator );  _set_purecall_handler( &terminator );  _set_invalid_parameter_handler( &invalid_parameter_handler ); 

    The above will send all crashes to your unhandled exception handler.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi I am developing a campera capture application. I am currently using EmguCV 2.0.
I'm currently writing a screen capture app for Windows and Linux using PyGTK, and
We're currently using the Silverlight VideoSink to capture video from users' local webcams, kinda
I am currently defining regular expressions in order to capture parameters in a URL,
I will like to take a screen capture without a window. I currently hide
I am currently matching HTML using this code: preg_match('/<\/?([a-z]+)[^>]*>|&#?[a-zA-Z0-9]+;/u', $html, $match, PREG_OFFSET_CAPTURE, $position) It
I'm currently writing a application that needs to capture some images. I start the
I'd like to capture a screenshot of what a java applet would currently look
I'm currently trying to capture the contents of my NSBox subclass to a PNG
I am currently trying to design a piece of screen-capture software. One design question

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.