Files
LXC/Common/OS.h
Pasha Bibko 41b5ba0632 Reverted a couple of changes for UNIX systems
Everything still works as it did before
2025-07-21 20:30:30 +01:00

13 lines
289 B
C

#pragma once
// Platform specific includes //
#if defined(_WIN32)
#define NOMINMAX
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>
#elif defined(__unix__)
// No platform specific includes are needed for UNIX based systems //
#else
#error "OS is not supported"
#endif