1 /*
2  * PROJECT:     Dr. Watson crash reporter
3  * LICENSE:     GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4  * PURPOSE:     Precompiled Header
5  * COPYRIGHT:   Copyright 2017 Mark Jansen (mark.jansen@reactos.org)
6  */
7 
8 #ifndef _DRWTSN32_PRECOMP_H_
9 #define _DRWTSN32_PRECOMP_H_
10 
11 #include <ntstatus.h>
12 #define WIN32_NO_STATUS
13 
14 #include <windef.h>
15 #include <winbase.h>
16 #include <winver.h>
17 
18 #include <string>
19 #include <vector>
20 #include <map>
21 #include <stdio.h>
22 #include <assert.h>
23 
24 #include "drwtsn32.h"
25 
26 typedef LONG NTSTATUS;
27 
28 #endif // _DRWTSN32_PRECOMP_H_
29