-
Notifications
You must be signed in to change notification settings - Fork 2
/
stdafx.h
44 lines (41 loc) · 904 Bytes
/
stdafx.h
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
39
40
41
42
43
44
/*
Developed by Michael Haephrati
https://www.securedglobe.net
https://www.freelancer.com/u/NYCyber
January 2021
*/
#pragma once
#define UNICODE
#include <Windows.h>
#include <stdio.h>
#include <iostream>
#include <sstream>
#include <iomanip>
#include <fstream>
#include <string>
#include "curl/curl.h"
#include <regex>
#include <shlwapi.h>
#include <atlbase.h>
#include <atlstr.h>
#include <atltime.h>
#include <time.h>
#include <set>
#include <chrono>
#include <gdiplus.h>
#include <ShellScalingApi.h>
// Libs
#pragma comment(lib, "gdiplus.lib")
#pragma comment(lib, "libcurl_a.lib")
#pragma comment(lib, "Shlwapi.lib")
#pragma comment(lib, "Shcore.lib")
#ifdef _DEBUG
#pragma comment(lib, "libcurl_a_debug.lib")
#else
#pragma comment(lib, "libcurl_a.lib")
#endif
// DirectX
#include <d3d9.h>
#include <d3d11.h>
#include <dxgi1_2.h>
using namespace std;