netatalk  4.4.0dev
Free and Open Source Apple Filing Protocol (AFP) Server
Loading...
Searching...
No Matches
ppd.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 1995 Regents of The University of Michigan.
3 * All Rights Reserved. See COPYRIGHT.
4 */
5
6#ifndef PAPD_PPD_H
7#define PAPD_PPD_H 1
8
9#include <sys/types.h>
10
11struct ppd_font {
12 char *pd_font;
14};
15
17 char *pd_name;
18 char *pd_value;
19};
20
21struct ppd_feature *ppd_feature(const char *, int);
22struct ppd_font *ppd_font(char *);
23int read_ppd(char *, int);
24
25#endif /* PAPD_PPD_H */
int read_ppd(char *, int)
Definition ppd.c:200
struct ppd_feature * ppd_feature(const char *, int)
Definition ppd.c:297
struct ppd_font * ppd_font(char *)
Definition ppd.c:277
Definition ppd.h:16
char * pd_value
Definition ppd.h:18
char * pd_name
Definition ppd.h:17
Definition ppd.h:11
struct ppd_font * pd_next
Definition ppd.h:13
char * pd_font
Definition ppd.h:12