AI 24/25 Project Software
Documentation for the AI 24/25 course programming project software
Loading...
Searching...
No Matches
system_windows.h
1#ifndef UTILS_SYSTEM_WINDOWS_H
2#define UTILS_SYSTEM_WINDOWS_H
3
4#include "downward/utils/system.h"
5
6#if OPERATING_SYSTEM == WINDOWS
7
8// Avoid min/max conflicts (http://support.microsoft.com/kb/143208).
9#ifndef NOMINMAX
10#define NOMINMAX
11#endif
12
13/* Speed up build process by skipping some includes
14 (https://support.microsoft.com/de-ch/kb/166474). */
15#ifndef WIN32_LEAN_AND_MEAN
16#define WIN32_LEAN_AND_MEAN
17#endif
18
19#include <windows.h>
20
21#endif
22#endif