/**************************************************************************
 *                                                                        *
 * Copyright (c) 1996 Michael Richmond and Richard Treffers               *
 *                                                                        *
 *                    This software may be copied and distributed for     *
 *                    educational, research and not for profit services   *
 *                    provided that this copyright and statement are      *
 *                    included in all such copies.                        *
 *                                                                        *
 **************************************************************************/


/*	Postscript writing routines
*/


/*	 this is really in Xlib.h but I am too lazy to re-read it
*/

typedef struct {
	short x, y;
} XPOINT;

#define ADOBE_ABSOLUTE	0
#define ADOBE_PREVIOUS	2
#define ADOBE_FILL		4

void adobe_close(char *command);
void adobe_erase(void);
void adobe_drawtext(int x, int y, char *s);
void adobe_drawmarker(int x, int y);
void adobe_setdash(int value);
void adobe_drawpoly( int n, XPOINT * pts,int mode);
void adobe_cleanup(void);
