From f614cb984534ce461161aa63230411dc58c72644 Mon Sep 17 00:00:00 2001 From: mmentovai Date: Fri, 12 Jan 2007 16:54:10 +0000 Subject: Pass the exception record (EXCEPTION_POINTERS*) to callback functions from ExceptionHandler on Windows. Patch by John Abd-El-Malek. r=me Interface change: post-dump and pre-dump (filter) callbacks now must accept an additional EXCEPTION_POINTERS* argument. git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@103 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/processor/testdata/test_app.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/processor/testdata') diff --git a/src/processor/testdata/test_app.cc b/src/processor/testdata/test_app.cc index e352e638..439c2191 100644 --- a/src/processor/testdata/test_app.cc +++ b/src/processor/testdata/test_app.cc @@ -40,7 +40,8 @@ namespace { static bool callback(const wchar_t *dump_path, const wchar_t *id, - void *context, bool succeeded) { + void *context, EXCEPTION_POINTERS *exinfo, + bool succeeded) { if (succeeded) { printf("dump guid is %ws\n", id); } else { -- cgit v1.2.1