stdafx.h 400 B

12345678910111213141516171819
  1. /*
  2. * @brief Defines the include header for all euroscope files
  3. * @file src/stdafx.h
  4. * @author Sven Czarnian <devel@svcz.de>
  5. * @copyright Copyright 2021 Sven Czarnian
  6. * @license This project is published under the GNU General Public License v3 (GPLv3)
  7. */
  8. #pragma once
  9. #include <algorithm>
  10. #include "res/targetver.h"
  11. #include <Windows.h>
  12. using std::min;
  13. using std::max;
  14. #include <version.h>