contrib/OWB: add correct SDL dependency, fix compilers used
[AROS-Contrib.git] / freetype1 / lib / arch / win32 / freetype.c
blob8c391a77a8b97a0b84a786a2524fe972051991b4
1 /* This file is part of the FreeType project */
3 /* single object library component for Win32 */
4 #define TT_MAKE_OPTION_SINGLE_OBJECT
6 /* Note, you should define the EXPORT_DEF and EXPORT_FUNC macros */
7 /* here if you want to build a Win32 DLL. If undefined, the */
8 /* macros default to "extern"/"" (nothing), which is suitable */
9 /* for static libraries. See `ttconfig.h' for details. */
11 /* The macro EXPORT_DEF is placed before each high-level API */
12 /* function declaration, and EXPORT_FUNC before each definition */
13 /* (body). You can then use it to take any compiler-specific */
14 /* pragma for DLL-exported symbols */
16 /* first include common core components */
18 #include "ttapi.c"
19 #include "ttcache.c"
20 #include "ttcalc.c"
21 #include "ttcmap.c"
22 #include "ttdebug.c"
23 #include "ttgload.c"
24 #include "ttinterp.c"
25 #include "ttload.c"
26 #include "ttobjs.c"
27 #include "ttraster.c"
29 /* then system-specific (or ANSI) components */
31 #include "ttfile.c"
32 #include "ttmemory.c"
33 #include "ttmutex.c"
35 /* finally, add some extensions */
37 #ifdef TT_CONFIG_OPTION_EXTEND_ENGINE
38 #include "ttextend.c"
39 #endif
42 /* END */