mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
280d7a9775
On application crash, drwtsn32 will attach to the application and try to get a dump, consisting of: - List of loaded modules - List of loaded threads - Per thread, a stacktrace - Per thread, a small hexdump from the stack - Per thread, a dump of the most common registers This dump is saved to the desktop, and the user is notified of the dump being dropped there. CORE-14180 #145
28 lines
553 B
C++
28 lines
553 B
C++
/*
|
|
* PROJECT: Dr. Watson crash reporter
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
* PURPOSE: Precompiled Header
|
|
* COPYRIGHT: Copyright 2017 Mark Jansen (mark.jansen@reactos.org)
|
|
*/
|
|
|
|
#ifndef _DRWTSN32_PRECOMP_H_
|
|
#define _DRWTSN32_PRECOMP_H_
|
|
|
|
#include <ntstatus.h>
|
|
#define WIN32_NO_STATUS
|
|
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <winver.h>
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
#include <stdio.h>
|
|
#include <assert.h>
|
|
|
|
#include "drwtsn32.h"
|
|
|
|
typedef LONG NTSTATUS;
|
|
|
|
#endif // _DRWTSN32_PRECOMP_H_
|