C + + software add dump debug Print Log

Source: Internet
Author: User

#include <DbgHelp.h>

#pragma comment (lib, "Dbghelp.lib")

LONG WINAPI toplevelexceptionfilter (struct _exception_pointers *pexceptioninfo)
{
cout << "Enter toplevelexceptionfilter Function" << Endl;
TCHAR Szpath[max_path] = {0};
TCHAR Szfilename[max_path] = {0};
tchar* szversion = "v1.0";
TCHAR dwbuffersize = MAX_PATH;
SYSTEMTIME Stlocaltime;
Getlocaltime (&stlocaltime);
CreateDirectory (szFileName, NULL);
stringcchprintf (szFileName, MAX_PATH, "%s-%04d%02d%02d-%02d%02d%02d-%ld-%ld.dmp",
Szversion, Stlocaltime.wyear, Stlocaltime.wmonth, Stlocaltime.wday,
Stlocaltime.whour, Stlocaltime.wminute, Stlocaltime.wsecond,
GetCurrentProcessId (), GetCurrentThreadID ());

HANDLE hfile = CreateFile (szFileName, generic_write, 0, NULL, create_always, file_attribute_normal, NULL);
Minidump_exception_information Stexceptionparam;
Stexceptionparam.threadid = GetCurrentThreadID ();
Stexceptionparam.exceptionpointers = Pexceptioninfo;
Stexceptionparam.clientpointers = FALSE;
MiniDumpWriteDump (GetCurrentProcess (), GetCurrentProcessId (), hfile, Minidumpwithfullmemory, &stExceptionParam , NULL, NULL);
CloseHandle (hfile);
GetChar ();

return exception_execute_handler;
}

//-----------------------------------------------------------------------------------------

Call this function at the very beginning of the program

SetUnhandledExceptionFilter (Toplevelexceptionfilter);

C + + software add dump debug Print Log

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.