We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e024666 commit 0be0b3fCopy full SHA for 0be0b3f
include/Termin8or/input/Keyboard.h
@@ -1,13 +1,15 @@
1
#pragma once
2
#include "KeyboardEnums.h"
3
#ifdef _WIN32
4
+#ifndef NOMINMAX
5
#define NOMINMAX // Should fix the std::min()/max() and std::numeric_limits<T>::min()/max() compilation problems
6
+#endif
7
#include <windows.h>
8
#include <conio.h>
-#else
9
+#else // POSIX
10
#include <termios.h>
11
#include <unistd.h>
-#endif
12
+#endif // COMMON
13
#include <optional>
14
#include <variant>
15
#include <iostream>
0 commit comments