aboutsummaryrefslogtreecommitdiff
path: root/src/processor/testdata/test_app.cc
diff options
context:
space:
mode:
authormmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e>2007-01-12 16:54:10 +0000
committermmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e>2007-01-12 16:54:10 +0000
commitf614cb984534ce461161aa63230411dc58c72644 (patch)
tree2c2639d540cd68822616a0123341dd2175a3dcea /src/processor/testdata/test_app.cc
parentAdd classes to: walk mach-o files, look for identifiers, and return a 16 byte... (diff)
downloadbreakpad-f614cb984534ce461161aa63230411dc58c72644.tar.xz
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
Diffstat (limited to 'src/processor/testdata/test_app.cc')
-rw-r--r--src/processor/testdata/test_app.cc3
1 files changed, 2 insertions, 1 deletions
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 {