~ubuntu-branches/ubuntu/precise/libxfont/precise-updates

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Stone
  • Date: 2005-09-09 15:39:57 UTC
  • Revision ID: james.westby@ubuntu.com-20050909153957-o0ltjssizusljf72
Tags: upstream-0.99.0+cvs.20050909
ImportĀ upstreamĀ versionĀ 0.99.0+cvs.20050909

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Xorg: fntfilio.h,v 1.4 2001/02/09 02:04:04 xorgcvs Exp $ */
 
2
 
 
3
/*
 
4
 
 
5
Copyright 1991, 1998  The Open Group
 
6
 
 
7
Permission to use, copy, modify, distribute, and sell this software and its
 
8
documentation for any purpose is hereby granted without fee, provided that
 
9
the above copyright notice appear in all copies and that both that
 
10
copyright notice and this permission notice appear in supporting
 
11
documentation.
 
12
 
 
13
The above copyright notice and this permission notice shall be included in
 
14
all copies or substantial portions of the Software.
 
15
 
 
16
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
17
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
18
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
 
19
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
 
20
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 
21
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
22
 
 
23
Except as contained in this notice, the name of The Open Group shall not be
 
24
used in advertising or otherwise to promote the sale, use or other dealings
 
25
in this Software without prior written authorization from The Open Group.
 
26
 
 
27
*/
 
28
/* $XFree86: xc/lib/font/include/fntfilio.h,v 1.6 2001/10/31 22:50:26 tsi Exp $ */
 
29
 
 
30
/*
 
31
 * Author:  Keith Packard, MIT X Consortium
 
32
 */
 
33
 
 
34
#ifndef _FNTFILIO_H_
 
35
#define _FNTFILIO_H_
 
36
 
 
37
#include <X11/fonts/bufio.h>
 
38
 
 
39
typedef BufFilePtr  FontFilePtr;
 
40
 
 
41
#define FontFileGetc(f)     BufFileGet(f)
 
42
#define FontFilePutc(c,f)   BufFilePut(c,f)
 
43
#define FontFileRead(f,b,n) BufFileRead(f,b,n)
 
44
#define FontFileWrite(f,b,n)    BufFileWrite(f,b,n)
 
45
#define FontFileSkip(f,n)   (BufFileSkip (f, n) != BUFFILEEOF)
 
46
#define FontFileSeek(f,n)   (BufFileSeek (f,n,0) != BUFFILEEOF)
 
47
 
 
48
#define FontFileEOF     BUFFILEEOF
 
49
 
 
50
extern FontFilePtr FontFileOpen ( const char *name );
 
51
extern int FontFileClose ( FontFilePtr f );
 
52
extern FontFilePtr FontFileOpenWrite ( const char *name );
 
53
extern FontFilePtr FontFileOpenWriteFd ( int fd );
 
54
extern FontFilePtr FontFileOpenFd ( int fd );
 
55
 
 
56
#endif /* _FNTFILIO_H_ */