summaryrefslogtreecommitdiff
path: root/Build/source/libs/freetype/freetype-1.5/lib/arch/win32/freetype.c
blob: ba976dea22080dc89109357ffb06514b955a1e0b (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
/* This file is part of the FreeType project */

/* single object library component for Win32 */
#define TT_MAKE_OPTION_SINGLE_OBJECT

/* Note, you should define the FT_EXPORT_xxx macros here if you   */
/* want to build a Win32 DLL. If undefined, the macros default to */
/* "extern"/"" (nothing), which is suitable for static libraries. */
/* See `ttconfig.h' for details.                                  */

/* The macro FT_EXPORT_DEF is placed before each high-level API   */
/* function declaration, and FT_EXPORT_FUNC before each           */
/* definition (body). Similarly, FT_EXPORT_DECL is placed before  */
/* each variable declaration, and FT_EXPORT_VAR before its        */
/* definition. You can then use it to take any compiler-specific  */
/* pragma for DLL-exported symbols                                */

/* first include common core components */

#include "ttapi.c"
#include "ttcache.c"
#include "ttcalc.c"
#include "ttcmap.c"
#include "ttdebug.c"
#include "ttgload.c"
#include "ttinterp.c"
#include "ttload.c"
#include "ttobjs.c"
#include "ttraster.c"

/* then system-specific (or ANSI) components */

#include "ttfile.c"
#include "ttmemory.c"
#include "ttmutex.c"

/* finally, add some extensions */

#ifdef TT_CONFIG_OPTION_EXTEND_ENGINE
#include "ttextend.c"
#endif


/* END */