2003-06-07 06:02:21 +02:00
|
|
|
/* pcfdrivr.h
|
2001-01-01 18:24:31 +01:00
|
|
|
|
|
|
|
FreeType font driver for pcf fonts
|
|
|
|
|
2002-03-31 08:56:56 +02:00
|
|
|
Copyright 2000-2001, 2002 by
|
2001-06-27 21:46:12 +02:00
|
|
|
Francesco Zappa Nardelli
|
2001-01-01 18:24:31 +01:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2003-06-07 06:02:21 +02:00
|
|
|
#ifndef __PCFDRIVR_H__
|
|
|
|
#define __PCFDRIVR_H__
|
2001-01-01 18:24:31 +01:00
|
|
|
|
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_INTERNAL_DRIVER_H
|
|
|
|
|
|
|
|
FT_BEGIN_HEADER
|
|
|
|
|
2009-04-05 17:25:14 +02:00
|
|
|
#ifdef FT_CONFIG_OPTION_PIC
|
|
|
|
#error "this module does not support PIC yet"
|
2012-01-16 18:00:24 +01:00
|
|
|
#endif
|
2009-04-05 17:25:14 +02:00
|
|
|
|
* include/freetype/internal/ftdriver.h,
include/freetype/internal/ftobjs.h,
src/base/ftapi.c, src/base/ftobjs.c,
src/cff/cffdrivr.c, src/cff/cffdrivr.h,
src/cid/cidriver.c, src/cid/cidriver.h,
src/pcf/pcfdriver.c, src/pcf/pcfdriver.h,
src/truetype/ttdriver.c, src/truetype/ttdriver.h,
src/type1/t1driver.c, src/type1/t1driver.h,
src/winfonts/winfnt.c, src/winfonts/winfnt.h:
updating the type definitions for font font drivers
2002-03-14 10:22:48 +01:00
|
|
|
FT_EXPORT_VAR( const FT_Driver_ClassRec ) pcf_driver_class;
|
2001-01-01 18:24:31 +01:00
|
|
|
|
|
|
|
FT_END_HEADER
|
|
|
|
|
|
|
|
|
2003-06-07 06:02:21 +02:00
|
|
|
#endif /* __PCFDRIVR_H__ */
|
2001-01-01 18:24:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|