ft.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. Copyright (c) 1997 by Mark Leisher
  3. Copyright (c) 1998-2002 by Juliusz Chroboczek
  4. Permission is hereby granted, free of charge, to any person obtaining a copy
  5. of this software and associated documentation files (the "Software"), to deal
  6. in the Software without restriction, including without limitation the rights
  7. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. copies of the Software, and to permit persons to whom the Software is
  9. furnished to do so, subject to the following conditions:
  10. The above copyright notice and this permission notice shall be included in
  11. all copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  15. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  16. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  17. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  18. THE SOFTWARE.
  19. */
  20. /* $XFree86: xc/lib/font/FreeType/ft.h,v 1.22 2003/06/08 15:41:13 herrb Exp $ */
  21. #ifndef _FT_H_
  22. #define _FT_H_
  23. #include <X11/Xfuncproto.h>
  24. #define FREETYPE_VERSION (FREETYPE_MAJOR * 1000000 + FREETYPE_MINOR * 1000 + FREETYPE_PATCH)
  25. #undef DEBUG_TRUETYPE
  26. #ifdef DEBUG_TRUETYPE
  27. #define MUMBLE(s) (ErrorF((s)))
  28. #define MUMBLE1(s,x) (ErrorF((s),(x)))
  29. #else
  30. #define MUMBLE(s)
  31. #define MUMBLE1(s,x)
  32. #endif
  33. #undef MAX
  34. #define MAX(h,i) ((h) > (i) ? (h) : (i))
  35. #define ADJUSTMAX(m,v) if((v)>(m)) (m)=(v)
  36. #undef MIN
  37. #define MIN(l,o) ((l) < (o) ? (l) : (o))
  38. #define ADJUSTMIN(m,v) if ((v)<(m)) (m)=(v)
  39. /* When comparing floating point values, we want to ignore small errors. */
  40. #define NEGLIGIBLE ((double)0.001)
  41. /* Are x and y significantly different? */
  42. #define DIFFER(x,y) (fabs((x)-(y))>=NEGLIGIBLE*fabs(x))
  43. /* Is x significantly different from 0 w.r.t. y? */
  44. #define DIFFER0(x,y) (fabs(x)>=NEGLIGIBLE*fabs(y))
  45. #ifndef ABS
  46. #define ABS(x) ((x) >= 0 ? (x) : -(x))
  47. #endif
  48. /* Two to the sixteenth power, as a double. */
  49. #define TWO_SIXTEENTH ((double)(1<<16))
  50. #define TWO_SIXTH ((double)(1<<6))
  51. /* Data structures used across files */
  52. typedef struct _FTMapping
  53. {
  54.     int named;
  55.     FT_CharMap cmap;
  56.     int base;
  57.     struct _FontMap *mapping;     /* allow inclusion without fontenc.h */
  58. } FTMappingRec, *FTMappingPtr;
  59. /* Prototypes */
  60. /* ftfuncs.c */
  61. #if 0
  62. void FreeTypeRegisterFontFileFunctions(void);
  63. #endif
  64. /* ftenc.c */
  65. int FTPickMapping(char*, int, char*, FT_Face, FTMappingPtr);
  66. unsigned FTRemap(FT_Face face, FTMappingPtr, unsigned code);
  67. /* fttools.c */
  68. int FTtoXReturnCode(int);
  69. int FTGetEnglishName(FT_Face, int, char *, int);
  70. extern void ErrorF(const char*, ...);
  71. #endif /* _FT_H_ */