20 lines
388 B
C++
20 lines
388 B
C++
#pragma once
|
|
|
|
#include "targetver.h"
|
|
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
|
#include <windows.h>
|
|
|
|
#include <string>
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <atomic>
|
|
|
|
using std::atomic_flag;
|
|
using std::shared_ptr;
|
|
using std::ifstream;
|
|
using std::string;
|
|
using std::wstring;
|
|
using std::vector;
|