Files
LXC/Common/OS.h
Pasha Bibko ac656b7b0f Added better debug
Now triggers a breakpoint when a function fails
2025-07-20 14:18:31 +01:00

11 lines
205 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