summaryrefslogtreecommitdiff
path: root/support/dktools/dk4wxtypes.h
blob: 999083877c8d5e2a8ca4733dfe71c2f09fdea800 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
Copyright 2020, Dirk Krause. All rights reserved.
SPDX-License-Identifier:	BSD-3-Clause
*/

#ifndef	DK4WXTYPES_H_INCLUDED
/**	Protection against multiple inclusions. */
#define	DK4WXTYPES_H_INCLUDED	1

/**	@file	dk4wxtypes.h	Types definitions for use with wxWidgets.
*/

#ifndef	DK4CONF_H_INCLUDED
#if DK4_BUILDING_DKTOOLS4
#include "dk4conf.h"
#else
#include <dktools-4/dk4conf.h>
#endif
#endif


#ifndef	WX_WXPREC_H_INCLUDED
#include <wx/wxprec.h>
#define	WX_WXPREC_H_INCLUDED 1
#endif
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#if	DK4_HAVE_WX_CHARTYPE_H
#ifndef	WX_CHARTYPE_H_INCLUDED
#include <wx/chartype.h>
#define	WX_CHARTYPE_H_INCLUDED 1
#endif
#else
#if	DK4_HAVE_WX_WXCHAR_H
#ifndef	WX_WXCHAR_H_INCLUDED
#include <wx/wxchar.h>
#define	WX_WXCHAR_H_INCLUDED 1
#endif
#else
#ifndef	WX_WX_H_INCLUDED
#include <wx/wx.h>
#define	WX_WX_H_INCLUDED
#endif
#endif
#endif
#endif

/**	Pointer to wxChar.
*/
typedef	wxChar	*DK4_PWXCHAR;

/**	Pointer to constant wxChar string.
*/
typedef	const wxChar	*DK4_PCWXCHAR;

#endif
/* ifndef DK4WXTYPES_H_INCLUDED */