~ubuntu-branches/ubuntu/raring/libxfont/raring-security

« back to all changes in this revision

Viewing changes to include/X11/fonts/bdfint.h

  • Committer: Package Import Robot
  • Author(s): Cyril Brulebois, Cyril Brulebois, Julien Cristau
  • Date: 2012-03-04 09:24:59 UTC
  • mfrom: (1.1.15)
  • Revision ID: package-import@ubuntu.com-20120304092459-cbu7e0ujz24lslpt
Tags: 1:1.4.5-1
[ Cyril Brulebois ]
* New upstream release.
* Switch to dh:
  - Bump debhelper build-dep and compat.
  - Rewrite debian/rules, using autoreconf and quilt sequences.
  - Adjust build dependencies accordingly.
  - Use build-main and build-udeb as build directories.
  - Adjust .install accordingly.
* Remove xsfbs accordingly.
* Add support for hardened build flags through dpkg-buildflags, based
  on a patch by Moritz Muehlenhoff, thanks! (Closes: #654154).

[ Julien Cristau ]
* Remove David Nusinow from Uploaders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
    BOOL        haveDefaultCh;
66
66
}           bdfFileState;
67
67
 
68
 
extern void bdfError ( char * message, ... );
69
 
extern void bdfWarning ( char *message, ... );
70
 
extern unsigned char * bdfGetLine ( FontFilePtr file, unsigned char *buf, 
 
68
extern void bdfError ( const char * message, ... ) _X_ATTRIBUTE_PRINTF(1, 2);
 
69
extern void bdfWarning ( const char *message, ... ) _X_ATTRIBUTE_PRINTF(1, 2);
 
70
extern unsigned char * bdfGetLine ( FontFilePtr file, unsigned char *buf,
71
71
                                    int len );
72
 
extern Atom bdfForceMakeAtom ( char *str, int *size );
 
72
extern Atom bdfForceMakeAtom ( const char *str, int *size );
73
73
extern Atom bdfGetPropertyValue ( char *s );
74
74
extern int bdfIsInteger ( char *str );
75
75
extern unsigned char bdfHexByte ( unsigned char *s );
76
 
extern Bool bdfSpecialProperty ( FontPtr pFont, FontPropPtr prop, 
 
76
extern Bool bdfSpecialProperty ( FontPtr pFont, FontPropPtr prop,
77
77
                                 char isString, bdfFileState *bdfState );
78
 
extern int bdfReadFont( FontPtr pFont, FontFilePtr file, 
 
78
extern int bdfReadFont( FontPtr pFont, FontFilePtr file,
79
79
                        int bit, int byte, int glyph, int scan );
80
80
extern int bdfReadFontInfo( FontInfoPtr pFontInfo, FontFilePtr file );
81
81
 
82
 
extern void FontCharInkMetrics ( FontPtr pFont, CharInfoPtr pCI, 
 
82
extern void FontCharInkMetrics ( FontPtr pFont, CharInfoPtr pCI,
83
83
                                 xCharInfo *pInk );
84
 
extern void FontCharReshape ( FontPtr pFont, CharInfoPtr pSrc, 
 
84
extern void FontCharReshape ( FontPtr pFont, CharInfoPtr pSrc,
85
85
                              CharInfoPtr pDst );
86
86
 
87
87
#endif                          /* BDFINT_H */