introduce the plugin definition
This commit is contained in:
25
src/stdafx.h
Normal file
25
src/stdafx.h
Normal file
@@ -0,0 +1,25 @@
|
||||
/*
|
||||
* @brief Defines the include header for all euroscope files
|
||||
* @file euroscope/stdafx.h
|
||||
* @author Sven Czarnian <devel@svcz.de>
|
||||
* @copyright Copyright 2020-2021 Sven Czarnian
|
||||
* @license This project is published under the GNU General Public License v3 (GPLv3)
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
#include "res/targetver.h"
|
||||
|
||||
#include <Windows.h>
|
||||
using std::min;
|
||||
using std::max;
|
||||
|
||||
#include <version.h>
|
||||
|
||||
#pragma warning(disable: 4458)
|
||||
#pragma warning(push, 0)
|
||||
#include <gdiplus.h>
|
||||
#pragma warning(pop)
|
||||
#pragma warning(default: 4458)
|
||||
Reference in New Issue
Block a user