Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/win.h
diff options
context:
space:
mode:
authorRobert <krzmbrzl@gmail.com>2020-09-11 19:29:33 +0300
committerRobert <krzmbrzl@gmail.com>2020-09-11 19:29:33 +0300
commitaf7dac72f4063dd8d4dac71973ea51c25896089a (patch)
tree35558695aea94d48fd9e77d164d63fd8b7c76e90 /src/win.h
parent40b28b03c150b453e00c6bc4f8d6957caea59c51 (diff)
FORMAT: Run clang-format 10 on all C/CXX source-files
Diffstat (limited to 'src/win.h')
-rw-r--r--src/win.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/win.h b/src/win.h
index be160cb25..506dd076d 100644
--- a/src/win.h
+++ b/src/win.h
@@ -11,15 +11,15 @@
#define MUMBLE_WIN_H_
#ifndef WIN32_LEAN_AND_MEAN
-# define WIN32_LEAN_AND_MEAN
+# define WIN32_LEAN_AND_MEAN
#endif
#ifndef UNICODE
-# define UNICODE
+# define UNICODE
#endif
#ifndef NOMINMAX
-# define NOMINMAX
+# define NOMINMAX
#endif
#ifdef __MINGW32__
@@ -29,14 +29,14 @@
// we need.
// This seems to be required only with MXE, with MSYS2
// the target is already Windows 7
-# if (_WIN32_WINNT < 0x0601)
-# undef _WIN32_WINNT
-# define _WIN32_WINNT 0x0601
-# endif
-# if (NTDDI_VERSION < NTDDI_WIN7)
-# undef NTDDI_VERSION
-# define NTDDI_VERSION NTDDI_WIN7
-# endif
+# if (_WIN32_WINNT < 0x0601)
+# undef _WIN32_WINNT
+# define _WIN32_WINNT 0x0601
+# endif
+# if (NTDDI_VERSION < NTDDI_WIN7)
+# undef NTDDI_VERSION
+# define NTDDI_VERSION NTDDI_WIN7
+# endif
#endif
#include <windows.h>
@@ -46,9 +46,9 @@
// so define QOS_FLOWID (and PQOS_FLOWID) as well as QOS_NON_ADAPTIVE_FLOW
// ourselves to allow us to build with QoS support on MinGW.
typedef UINT32 QOS_FLOWID, *PQOS_FLOWID;
-# ifndef QOS_NON_ADAPTIVE_FLOW
-# define QOS_NON_ADAPTIVE_FLOW 0x00000002
-# endif
+# ifndef QOS_NON_ADAPTIVE_FLOW
+# define QOS_NON_ADAPTIVE_FLOW 0x00000002
+# endif
#endif
#endif // MUMBLE_WIN_H_