Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/dvi/mdvi-lib/assoc.h
blob: f5b7035a95a03c9c3e2c4df2c2c8c0089f7a4a20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef MDVI_ASSOC_H
#define MDVI_ASSOC_H

/* Associations */
extern int	mdvi_assoc_put 
		__PROTO((DviContext *, char *, void *, DviFree2Func));
extern void *	mdvi_assoc_get __PROTO((DviContext *, char *));
extern void *	mdvi_assoc_del __PROTO((DviContext *, char *));
extern void	mdvi_assoc_free __PROTO((DviContext *, char *));
extern void	mdvi_assoc_flush __PROTO((DviContext *));


#endif