]> arthur.barton.de Git - netatalk.git/blob - etc/papd/ppd.h
added #include <sys/cdefs.h> so that __P is defined on systems like TRU64
[netatalk.git] / etc / papd / ppd.h
1 /*
2  * Copyright (c) 1995 Regents of The University of Michigan.
3  * All Rights Reserved.  See COPYRIGHT.
4  */
5 #ifndef PAPD_PPD_H
6 #define PAPD_PPD_H 1
7
8 #include <sys/cdefs.h>
9
10 struct ppd_font {
11     char                *pd_font;
12     struct ppd_font     *pd_next;
13 };
14
15 struct ppd_feature {
16     char        *pd_name;
17     char        *pd_value;
18 };
19
20 struct ppd_feature      *ppd_feature __P((const char *, int));
21 struct ppd_font         *ppd_font __P((char *));
22 int read_ppd __P((char *, int));
23 int ppd_init __P(( void ));
24
25 #endif /* PAPD_PPD_H */