Removed definition "LIB= rpc". We want libc.a to contain librpc.a, not
[unix-history] / .ref-386BSD-0.1-patchkit / usr / othersrc / contrib / isode / h / pepdefs.h
CommitLineData
2596a09e
WJ
1/* pepdefs.h */
2
3/*
4 * $Header: /f/osi/h/RCS/pepdefs.h,v 7.1 91/02/22 09:24:51 mrose Interim $
5 *
6 *
7 * $Log: pepdefs.h,v $
8 * Revision 7.1 91/02/22 09:24:51 mrose
9 * Interim 6.8
10 *
11 * Revision 7.0 90/07/01 19:52:37 mrose
12 * *** empty log message ***
13 *
14 */
15
16/*
17 * NOTICE
18 *
19 * Acquisition, use, and distribution of this module and related
20 * materials are subject to the restrictions of a license agreement.
21 * Consult the Preface in the User's Manual for the full terms of
22 * this agreement.
23 *
24 */
25
26
27#ifndef PEPDEF_DEFINITIONS
28#define PEPDEF_DEFINITIONS
29/*
30 * Globally known pep definitions
31 */
32
33typedef struct {
34 char *md_name; /* Name of this module */
35 int md_nentries; /* Number of entries */
36 tpe **md_etab; /* Pointer to encoding tables */
37 tpe **md_dtab; /* Pointer to decoding tables */
38 ptpe **md_ptab; /* Pointer to Printing tables */
39 PE (*md_eucode)(); /* User code for encoding */
40 PE (*md_ducode)(); /* User code for decoding */
41 PE (*md_pucode)(); /* User code for printing */
42
43 } modtyp;
44
45#ifndef NULL
46#define NULL (char *)0
47#endif
48
49#endif