Consolix
Loading...
Searching...
No Matches
platform_includes.hpp
Go to the documentation of this file.
1#pragma once
2#ifndef _CONSOLIX_PLATFORM_INCLUDES_HPP_INCLUDED
3#define _CONSOLIX_PLATFORM_INCLUDES_HPP_INCLUDED
4
8
10#if defined(_WIN32) || defined(_WIN64)
11#define WIN32_LEAN_AND_MEAN
12#include <Windows.h>
13#include <shellapi.h>
14#include <direct.h>
15#include <minwindef.h>
16#include <winbase.h>
17#else
18#include <iostream>
19#include <unistd.h>
20#include <limits.h>
21#include <sys/stat.h>
22#endif
24
25#endif // _CONSOLIX_PLATFORM_INCLUDES_HPP_INCLUDED