blob: b52a644868eaf208cd9c22ab30f9f0db7822ad9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#pragma once
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#define NOMINMAX
// Windows Header Files
#include "targetver.h"
#include <windows.h>
// ATL header files
#include <atlstr.h>
#include <atlfile.h>
#include <atlbase.h>
#include <atlwin.h>
// C RunTime Header Files
#include <stdlib.h>
#include <malloc.h>
#include <memory.h>
#include <tchar.h>
#include <assert.h>
// C++ headers
#include <vector>
#include <array>
#include <algorithm>
|