Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
ft.h
Package: X264CODEC.rar [view]
Upload User: lctgjx
Upload Date: 2022-06-04
Package Size: 8887k
Code Size: 3k
Category:
Streaming_Mpeg4
Development Platform:
Visual C++
- /*
- Copyright (c) 1997 by Mark Leisher
- Copyright (c) 1998-2002 by Juliusz Chroboczek
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE.
- */
- /* $XFree86: xc/lib/font/FreeType/ft.h,v 1.22 2003/06/08 15:41:13 herrb Exp $ */
- #ifndef _FT_H_
- #define _FT_H_
- #include <X11/Xfuncproto.h>
- #define FREETYPE_VERSION (FREETYPE_MAJOR * 1000000 + FREETYPE_MINOR * 1000 + FREETYPE_PATCH)
- #undef DEBUG_TRUETYPE
- #ifdef DEBUG_TRUETYPE
- #define MUMBLE(s) (ErrorF((s)))
- #define MUMBLE1(s,x) (ErrorF((s),(x)))
- #else
- #define MUMBLE(s)
- #define MUMBLE1(s,x)
- #endif
- #undef MAX
- #define MAX(h,i) ((h) > (i) ? (h) : (i))
- #define ADJUSTMAX(m,v) if((v)>(m)) (m)=(v)
- #undef MIN
- #define MIN(l,o) ((l) < (o) ? (l) : (o))
- #define ADJUSTMIN(m,v) if ((v)<(m)) (m)=(v)
- /* When comparing floating point values, we want to ignore small errors. */
- #define NEGLIGIBLE ((double)0.001)
- /* Are x and y significantly different? */
- #define DIFFER(x,y) (fabs((x)-(y))>=NEGLIGIBLE*fabs(x))
- /* Is x significantly different from 0 w.r.t. y? */
- #define DIFFER0(x,y) (fabs(x)>=NEGLIGIBLE*fabs(y))
- #ifndef ABS
- #define ABS(x) ((x) >= 0 ? (x) : -(x))
- #endif
- /* Two to the sixteenth power, as a double. */
- #define TWO_SIXTEENTH ((double)(1<<16))
- #define TWO_SIXTH ((double)(1<<6))
- /* Data structures used across files */
- typedef struct _FTMapping
- {
- int named;
- FT_CharMap cmap;
- int base;
- struct _FontMap *mapping; /* allow inclusion without fontenc.h */
- } FTMappingRec, *FTMappingPtr;
- /* Prototypes */
- /* ftfuncs.c */
- #if 0
- void FreeTypeRegisterFontFileFunctions(void);
- #endif
- /* ftenc.c */
- int FTPickMapping(char*, int, char*, FT_Face, FTMappingPtr);
- unsigned FTRemap(FT_Face face, FTMappingPtr, unsigned code);
- /* fttools.c */
- int FTtoXReturnCode(int);
- int FTGetEnglishName(FT_Face, int, char *, int);
- extern void ErrorF(const char*, ...);
- #endif /* _FT_H_ */