home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Enigma Amiga Life 110
/
EnigmaAmiga110CD.iso
/
indispensabili
/
utility
/
apdf
/
xpdf-0.80
/
xpdf
/
agfxcomm.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-04-27
|
992b
|
45 lines
//========================================================================
//
// AGfxcomm.h
//
// Copyright 1999 Emmanuel Lesueur
//
//========================================================================
#ifndef AGFXCOMM_H
#define AGFXCOMM_H
struct GfxPipe {
short * volatile readp;
short * volatile writep;
volatile short done;
short data[1];
};
#define AGFX_SETAPEN 1
#define AGFX_SETFONT 2
#define AGFX_POLYDRAW 3
#define AGFX_ADDCHAR 4
#define AGFX_RECTFILL 5
#define AGFX_IMAGE 6
#define AGFX_IMAGE24 7
#define AGFX_LINEPTRN 8
#define AGFX_INITAREA 9
#define AGFX_AREAPOLY 10
#define AGFX_AREAEND 11
#define AGFX_INITCLIP 12
#define AGFX_RECTCLIP 13
#define AGFX_POLYCLIP 14
#define AGFX_INSTALLCLIP 15
#define AGFX_GETIMAGE 16
#define AGFX_GETIMAGE24 17
#define AGFX_GETCOLORS 18
#define AGFX_STARTPAGE 19
#define AGFX_ENDPAGE 20
#define AGFX_PENCOLOR 21
#define AGFX_OPENFONT 22
#define AGFX_CLOSEFONT 23
#endif