56 lines
1.2 KiB
C
56 lines
1.2 KiB
C
|
#pragma once
|
|||
|
|
|||
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
|||
|
#ifndef _CRT_SECURE_NO_WARNINGS
|
|||
|
#define _CRT_SECURE_NO_WARNINGS
|
|||
|
#endif
|
|||
|
|
|||
|
#pragma warning(disable:4710) // not inlined
|
|||
|
#pragma warning(disable:4786) // character 255 <20>Ѿ<D1BE>°<EFBFBD> <20><><EFBFBD><EFBFBD>
|
|||
|
#pragma warning(disable:4244) // type conversion possible lose of data
|
|||
|
|
|||
|
#include <windows.h>
|
|||
|
#include <assert.h>
|
|||
|
#include <stdio.h>
|
|||
|
#pragma warning ( disable : 4201 )
|
|||
|
#include <mmsystem.h>
|
|||
|
#pragma warning ( default : 4201 )
|
|||
|
#include <imagehlp.h>
|
|||
|
#include <time.h>
|
|||
|
|
|||
|
#pragma warning ( push, 3 )
|
|||
|
|
|||
|
#include <algorithm>
|
|||
|
#include <string>
|
|||
|
#include <vector>
|
|||
|
#include <deque>
|
|||
|
#include <list>
|
|||
|
#include <map>
|
|||
|
|
|||
|
#pragma warning ( pop )
|
|||
|
|
|||
|
#if _MSC_VER >= 1400
|
|||
|
#define stricmp _stricmp
|
|||
|
#define strnicmp _strnicmp
|
|||
|
#define strupt _strupr
|
|||
|
#define strcmpi _strcmpi
|
|||
|
#define fileno _fileno
|
|||
|
//#define access _access_s
|
|||
|
//#define _access _access_s
|
|||
|
#define atoi _atoi64
|
|||
|
#endif
|
|||
|
|
|||
|
// Armadillo nanomite protection
|
|||
|
#if !defined(NANOBEGIN) && !defined(NANOEND)
|
|||
|
#ifdef _DEBUG
|
|||
|
#define NANOBEGIN
|
|||
|
#define NANOEND
|
|||
|
#else
|
|||
|
#include <armadillo/SecuredSections.h>
|
|||
|
#endif
|
|||
|
#endif
|
|||
|
|
|||
|
#include "vk.h"
|
|||
|
#include "filename.h"
|
|||
|
#include "ServiceDefs.h"
|