diff options
author | Joel Bodenmann <joel@seriouslyembedded.com> | 2016-02-27 14:35:57 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@seriouslyembedded.com> | 2016-02-27 14:35:57 +0100 |
commit | 6d2492aa93d8dc2a5fe701102d59d4e96d1b568c (patch) | |
tree | 5d1d1c0aff467fd4155a8dff0fb6659d8514cf78 /gfx.h | |
parent | b422bc99dd00947d4da668b8be12d8ecd191ccf9 (diff) | |
parent | 87412e87d641e1d4e63eebbffc6434608a2149cb (diff) | |
download | uGFX-6d2492aa93d8dc2a5fe701102d59d4e96d1b568c.tar.gz uGFX-6d2492aa93d8dc2a5fe701102d59d4e96d1b568c.tar.bz2 uGFX-6d2492aa93d8dc2a5fe701102d59d4e96d1b568c.zip |
Merge branch 'translation'
Diffstat (limited to 'gfx.h')
-rw-r--r-- | gfx.h | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -145,6 +145,13 @@ #ifndef GFX_USE_GFILE #define GFX_USE_GFILE FALSE #endif + /** + * @brief GFX Translation Support API + * @details Defaults to FALSE + */ + #ifndef GFX_USE_GTRANS + #define GFX_USE_GTRANS FALSE + #endif /** @} */ /** @@ -155,6 +162,7 @@ #include "src/gdriver/gdriver_options.h" #include "src/gfile/gfile_options.h" #include "src/gmisc/gmisc_options.h" +#include "src/gtrans/gtrans_options.h" #include "src/gqueue/gqueue_options.h" #include "src/gevent/gevent_options.h" #include "src/gtimer/gtimer_options.h" @@ -181,6 +189,7 @@ #include "src/gtimer/gtimer_rules.h" #include "src/gqueue/gqueue_rules.h" #include "src/gmisc/gmisc_rules.h" +#include "src/gtrans/gtrans_rules.h" #include "src/gfile/gfile_rules.h" #include "src/gdriver/gdriver_rules.h" #include "src/gos/gos_rules.h" @@ -192,6 +201,7 @@ //#include "src/gdriver/gdriver.h" // This module is only included by source that needs it. #include "src/gfile/gfile.h" #include "src/gmisc/gmisc.h" +#include "src/gtrans/gtrans.h" #include "src/gqueue/gqueue.h" #include "src/gevent/gevent.h" #include "src/gtimer/gtimer.h" |