/* Copyright (C) 2020, Dirk Krause. All rights reserved. SPDX-License-Identifier: BSD-3-Clause */ /** @file dk4conf.h Fixed configure results. */ #ifndef DK4CONF_H_INCLUDED /** Protection against multiple inclusion. */ #define DK4CONF_H_INCLUDED 1 #ifndef DK4_ON_WINDOWS #if _WIN32 /** Define to 1 on Windows, 0 otherwise. */ #define DK4_ON_WINDOWS 1 #else /** Define to 1 on Windows, 0 otherwise. */ #define DK4_ON_WINDOWS 0 #endif #endif