winprefs v0.3.2
A registry exporter for programmers.
Loading...
Searching...
No Matches
pch.h
1#ifndef PCH_H
2#define PCH_H
3
4#include <errno.h>
5#include <setjmp.h>
6#if HAVE_STDBOOL
7#include <stdbool.h>
8#endif
9#include <stdarg.h>
10#include <stddef.h>
11#include <stdint.h>
12#include <stdio.h>
13#include <stdlib.h>
14#include <string.h>
15#include <wchar.h>
16
17#if !defined(TESTING) || !TESTING
18#include <crtdbg.h>
19#include <process.h>
20#include <shlobj.h>
21#include <shlwapi.h>
22#include <windows.h>
23// Must come after windows.h
24#include <shellapi.h>
25#include <versionhelpers.h>
26#else
27#include <cmocka.h>
28
29#include "tests/wrappers.h"
30#endif
31
32#include "debug.h"
33#include "macros.h"
34#include "utils.h"
35
36#endif // PCH_H