]> arthur.barton.de Git - netatalk.git/blob - etc/papd/ppd.h
Initial revision
[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
6 struct ppd_font {
7     char                *pd_font;
8     struct ppd_font     *pd_next;
9 };
10
11 struct ppd_feature {
12     char        *pd_name;
13     char        *pd_value;
14 };
15
16 struct ppd_feature      *ppd_feature();
17 struct ppd_font         *ppd_font();