~ubuntu-branches/ubuntu/precise/netatalk/precise

« back to all changes in this revision

Viewing changes to etc/papd/ppd.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Rittau
  • Date: 2004-01-19 12:43:49 UTC
  • Revision ID: james.westby@ubuntu.com-20040119124349-es563jbp0hk0ae51
Tags: upstream-1.6.4
ImportĀ upstreamĀ versionĀ 1.6.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * $Id: ppd.h,v 1.4 2001/06/25 20:13:45 rufustfirefly Exp $
 
3
 *
 
4
 * Copyright (c) 1995 Regents of The University of Michigan.
 
5
 * All Rights Reserved.  See COPYRIGHT.
 
6
 */
 
7
 
 
8
#ifndef PAPD_PPD_H
 
9
#define PAPD_PPD_H 1
 
10
 
 
11
#include <sys/cdefs.h>
 
12
 
 
13
struct ppd_font {
 
14
    char                *pd_font;
 
15
    struct ppd_font     *pd_next;
 
16
};
 
17
 
 
18
struct ppd_feature {
 
19
    char        *pd_name;
 
20
    char        *pd_value;
 
21
};
 
22
 
 
23
struct ppd_feature      *ppd_feature __P((const char *, int));
 
24
struct ppd_font         *ppd_font __P((char *));
 
25
int read_ppd __P((char *, int));
 
26
int ppd_init __P(( void ));
 
27
 
 
28
#endif /* PAPD_PPD_H */