Changes
This commit is contained in:
@@ -10,10 +10,12 @@
|
||||
#include <string>
|
||||
#include <map>
|
||||
#include <atomic>
|
||||
#include <thread>
|
||||
|
||||
using wchar = wchar_t;
|
||||
using QWORD = unsigned long long int;
|
||||
using String = std::wstring;
|
||||
using Thread = std::thread;
|
||||
template<typename K, typename V, typename Cmp = std::less<K>, typename Alloc = std::allocator<std::pair<const K, V>>> using Map = std::map<K, V, Cmp, Alloc>;
|
||||
template<typename T, typename Alloc = std::allocator<T>> using List = std::list<T, Alloc>;
|
||||
template<typename F> using Function = std::function<F>;
|
||||
@@ -48,6 +50,7 @@ template<typename F> using Function = std::function<F>;
|
||||
#include <iostream>
|
||||
#include <dwmapi.h>
|
||||
|
||||
#pragma comment(lib, "Msimg32.lib")
|
||||
#pragma comment(lib, "ws2_32.lib")
|
||||
#pragma comment(lib, "dwmapi.lib")
|
||||
#pragma comment(lib, "Uxtheme.lib")
|
||||
|
||||
Reference in New Issue
Block a user