diff options
author | mmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2007-01-12 16:54:10 +0000 |
---|---|---|
committer | mmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2007-01-12 16:54:10 +0000 |
commit | f614cb984534ce461161aa63230411dc58c72644 (patch) | |
tree | 2c2639d540cd68822616a0123341dd2175a3dcea /src/processor | |
parent | Add classes to: walk mach-o files, look for identifiers, and return a 16 byte... (diff) | |
download | breakpad-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')
-rw-r--r-- | src/processor/testdata/test_app.cc | 3 |
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 { |