blob: 41ab0ba314992fd0bca9bec0c81db1b92a549032 (
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
|
#ifndef DK4WXTYPES_H_INCLUDED
/** Protection against multiple inclusions. */
#define DK4WXTYPES_H_INCLUDED 1
/** @file dk4wxtypes.h Types definitions for use with wxWidgets.
*/
#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 */
|