1/*
2Copyright (C) 2020, Dirk Krause. All rights reserved.
3SPDX-License-Identifier:	BSD-3-Clause
4*/
5
6/**	@file dk4conf.h	Fixed configure results.
7*/
8
9#ifndef DK4CONF_H_INCLUDED
10/**	Protection against multiple inclusion.
11*/
12#define DK4CONF_H_INCLUDED 1
13
14#ifndef	DK4_ON_WINDOWS
15#if _WIN32
16/**	Define to 1 on Windows, 0 otherwise.
17*/
18#define	DK4_ON_WINDOWS	1
19#else
20/**	Define to 1 on Windows, 0 otherwise.
21*/
22#define	DK4_ON_WINDOWS	0
23#endif
24#endif
25
26