diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/client/windows/handler/exception_handler.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/windows/handler/exception_handler.h b/src/client/windows/handler/exception_handler.h index 5f6f5231..71360dbc 100644 --- a/src/client/windows/handler/exception_handler.h +++ b/src/client/windows/handler/exception_handler.h @@ -87,6 +87,10 @@ class ExceptionHandler { void *callback_context, bool install_handler); ~ExceptionHandler(); + // Get and set the minidump path. + wstring dump_path() const { return dump_path_; } + void set_dump_path(const wstring &dump_path) { dump_path_ = dump_path; } + // Writes a minidump immediately. This can be used to capture the // execution state independently of a crash. Returns true on success. bool WriteMinidump(); |