blob: ddec76184328e8714161229c7d29ba9e80437a65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* Copyright (c), Recep Aslantas.
*
* MIT License (MIT), http://opensource.org/licenses/MIT
* Full license can be found in the LICENSE file
*/
#ifndef cglm__config__h_
#define cglm__config__h_
#if defined(_WIN32) || defined(WIN32)
/* Exclude rarely-used stuff from Windows headers */
# define WIN32_LEAN_AND_MEAN
# include <SDKDDKVer.h>
/* Windows Header Files: */
# include <windows.h>
#endif
#endif /* cglm__config__h_ */
|