Files
HexUnlocked/src/unlocker/win-platform.h
T
2026-06-20 06:59:39 -03:00

19 lines
244 B
C

#pragma once
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#ifndef NOMINMAX
#define NOMINMAX
#endif
#if defined(_WIN32)
#include <minwindef.h>
#include <wtypes.h>
#endif
#ifdef ERROR
#undef ERROR
#endif