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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: fontmisc.h,v 1.4 2001/02/09 02:04:04 xorgcvs Exp $ */
  2. /*
  3. Copyright 1991, 1998  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  14. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  15. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  16. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall not be
  18. used in advertising or otherwise to promote the sale, use or other dealings
  19. in this Software without prior written authorization from The Open Group.
  20. */
  21. /* $XFree86: xc/lib/font/include/fontmisc.h,v 3.16 2001/12/14 19:56:54 dawes Exp $ */
  22. /*
  23.  * Author:  Keith Packard, MIT X Consortium
  24.  */
  25. #ifndef _FONTMISC_H_
  26. #define _FONTMISC_H_
  27. #ifndef FONTMODULE
  28. #include <X11/Xfuncs.h>
  29. #include <stdlib.h>
  30. #include <stdio.h>
  31. #ifndef X_NOT_POSIX
  32. #include <unistd.h>
  33. #else
  34. extern int close();
  35. #endif
  36. #endif /* FONTMODULE */
  37. #include <X11/Xdefs.h>
  38. #ifndef LSBFirst
  39. #define LSBFirst 0
  40. #define MSBFirst 1
  41. #endif
  42. #ifndef None
  43. #define None 0l
  44. #endif
  45. #ifndef TRUE
  46. #define TRUE 1
  47. #define FALSE 0
  48. #endif
  49. extern Atom MakeAtom ( char *string, unsigned len, int makeit );
  50. extern int ValidAtom ( Atom atom );
  51. extern char *NameForAtom (Atom atom);
  52. #ifndef _HAVE_XALLOC_DECLS
  53. #define _HAVE_XALLOC_DECLS
  54. extern pointer Xalloc(unsigned long);
  55. extern pointer Xrealloc(pointer, unsigned long);
  56. extern void Xfree(pointer);
  57. extern pointer Xcalloc(unsigned long);
  58. #endif
  59. extern int f_strcasecmp(const char *s1, const char *s2);
  60. #ifndef xalloc
  61. #define xalloc(n)   Xalloc ((unsigned) n)
  62. #define xfree(p)    Xfree ((pointer) p)
  63. #define xrealloc(p,n) Xrealloc ((pointer)p,n)
  64. #define xcalloc(n,s)    Xcalloc((unsigned) n * (unsigned) s)
  65. #endif
  66. #define lowbit(x) ((x) & (~(x) + 1))
  67. #undef assert
  68. #define assert(x) ((void)0)
  69. #ifndef strcasecmp
  70. #if defined(NEED_STRCASECMP) && !defined(FONTMODULE)
  71. #define strcasecmp(s1,s2) f_strcasecmp(s1,s2)
  72. #endif
  73. #endif
  74. extern void
  75. BitOrderInvert(
  76.     register unsigned char *,
  77.     register int
  78. );
  79. extern void
  80. TwoByteSwap(
  81.     register unsigned char *,
  82.     register int
  83. );
  84. extern void
  85. FourByteSwap(
  86.     register unsigned char *,
  87.     register int
  88. );
  89. extern int
  90. RepadBitmap (
  91.     char*, 
  92.     char*,
  93.     unsigned, 
  94.     unsigned,
  95.     int, 
  96.     int
  97. );
  98. extern void CopyISOLatin1Lowered(
  99.     char * /*dest*/,
  100.     char * /*source*/,
  101.     int /*length*/
  102. );
  103. extern void register_fpe_functions(void);
  104. #endif /* _FONTMISC_H_ */