12 lines
252 B
C
12 lines
252 B
C
|
#pragma once
|
|||
|
#ifndef WIN32_LEAN_AND_MEAN
|
|||
|
#define WIN32_LEAN_AND_MEAN
|
|||
|
#endif // !WIN32_LEAN_AND_MEAN
|
|||
|
|
|||
|
#define DELP(p) if(p){delete p; p = nullptr;}
|
|||
|
|
|||
|
#include <windows.h>
|
|||
|
#include <tchar.h>
|
|||
|
#include <string>
|
|||
|
#include <atlbase.h>
|
|||
|
using namespace std;
|