summaryrefslogtreecommitdiff
path: root/support/dktools/dk4conf.h.start
blob: 1102f468fd0b20988b5238261769fed8a9889945 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
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