Files
LXC/Common/OS.h
2025-07-21 17:39:43 +01:00

11 lines
217 B
C

#pragma once
// Platform specific includes //
#ifdef _WIN32
#define NOMINMAX
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>
#else
#error "Code is currently only supported on Win32"
#endif // _WIN32