aboutsummaryrefslogtreecommitdiff
path: root/SpotifyKeyDumper/pch.h
blob: 4b7ab375afeafd75f5e6ad8eca3f1322481e35f1 (plain) (blame)
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
// pch.h: This is a precompiled header file.
// Files listed below are compiled only once, improving build performance for future builds.
// This also affects IntelliSense performance, including code completion and many code browsing features.
// However, files listed here are ALL re-compiled if any one of them is updated between builds.
// Do not add files here that you will be updating frequently as this negates the performance advantage.

#ifndef PCH_H
#define PCH_H

// add headers that you want to pre-compile here
#pragma comment(lib, "Version.lib")
#pragma comment(lib, "Wininet.lib")

#include <codecvt>
#include <cstdint>
#include "framework.h"
#include <fstream>
#include <iomanip>
#include <iostream>
#include <regex>
#include <sstream>
#include <stdint.h>
#include <tchar.h>
#include <thread>
#include <vector>
#include <WinInet.h>

// TagLib
#define TAGLIB_STATIC
#include <taglib/mpegfile.h>
#include <taglib/attachedpictureframe.h>
#include <taglib/id3v2tag.h>
#include <taglib/vorbisfile.h>

#endif //PCH_H