-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpch.h
More file actions
38 lines (25 loc) · 709 Bytes
/
Copy pathpch.h
File metadata and controls
38 lines (25 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/** $VER: pch.h (2026.08.15) P. Stuer **/
#pragma once
#include <CppCoreCheck/Warnings.h>
#pragma warning(disable: 4100 4625 4626 4710 4711 4738 4746 5039 5045 ALL_CPPCORECHECK_WARNINGS)
#include <SDKDDKVer.h>
#define NOMINMAX
#include <helpers/foobar2000+atl.h>
#include <helpers/helpers.h>
#include <helpers/DarkMode.h>
#include <sdk/autoplaylist.h>
#include <comdef.h> // For _com_error
#include <stdlib.h>
#include <strsafe.h>
#include <algorithm>
#include <bit>
#include <cassert>
#include <cmath>
#include <memory>
#include <ranges>
#include <string>
#include <libmsc.h>
#ifndef THIS_HINSTANCE
EXTERN_C IMAGE_DOS_HEADER __ImageBase;
#define THIS_HINSTANCE ((HINSTANCE) &__ImageBase)
#endif