summaryrefslogtreecommitdiff
path: root/include/freetype/fterrors.h
diff options
context:
space:
mode:
authorDavid Turner <david@freetype.org>2002-02-21 11:48:48 +0000
committerDavid Turner <david@freetype.org>2002-02-21 11:48:48 +0000
commit222cec8c201dfb93aae9e167ead620ea5065cd7b (patch)
treefeb63ec30a327535b9766b72644481c45696ac66 /include/freetype/fterrors.h
parent90839fa969d6779938b9f86fef914fe3ce98f360 (diff)
downloadfreetype2-222cec8c201dfb93aae9e167ead620ea5065cd7b.tar.gz
* include/freetype/internal/ftdebug.h, src/base/ftdebug.c: modified
the debug sub-system initialization. trace levels can now be specified within the "FT2_DEBUG" environment variable. See the comments within "ftdebug.c" for more details * include/freetype/internal/fttrace.h: new file to define the trace levels used for debugging. it is used both to define enums and toggle names for FT2_DEBUG * src/base/ftobjs.c, src/base/ftstream.c: FT_Assert renamed to FT_ASSERT * include/freetype/internal/ftextend.h, src/base/ftextend.c, src/base/Jamfile, src/base/rules.mk: removing "ftextend" from the library, since it is now completely obsolete..
Diffstat (limited to 'include/freetype/fterrors.h')
-rw-r--r--include/freetype/fterrors.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/freetype/fterrors.h b/include/freetype/fterrors.h
index 89e0cf32a..85dd658ca 100644
--- a/include/freetype/fterrors.h
+++ b/include/freetype/fterrors.h
@@ -105,6 +105,10 @@
#undef FT_NEED_EXTERN_C
+
+#undef FT_ERR_XCAT
+#undef FT_ERR_CAT
+
#define FT_ERR_XCAT( x, y ) x ## y
#define FT_ERR_CAT( x, y ) FT_ERR_XCAT( x, y )
@@ -192,6 +196,11 @@
"invalid argument" )
FT_ERRORDEF_( Unimplemented_Feature, 0x07, \
"unimplemented feature" )
+ FT_ERRORDEF_( Invalid_Table, 0x08, \
+ "broken table" )
+ FT_ERRORDEF_( Invalid_Offset, 0x09, \
+ "broken offset within table" )
+
/* glyph/character errors */