home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 March
/
VPR9703A.ISO
/
VPR_DATA
/
DOGA
/
SOURCES
/
POLYEDIT.LZH
/
MODEL
/
GRAPH.H
< prev
next >
Wrap
C/C++ Source or Header
|
1996-02-29
|
939b
|
33 lines
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
typedef struct {
int h, v, hword ;
unsigned short *pat0, *pat1 ;
}
Sheet ;
/* graphpc.c */
extern void graph_init( void );
extern void graph_exit( void );
extern void graph_line( int, int, int, int, int );
extern void graph_dashline( int, int, int, int, int );
extern void graph_cls( int );
extern void graph_fill( int, int, int, int, int );
extern void graph_palet( int, int, int, int );
extern void graph_puts( char*, int, int, int );
extern void graph_pattern( int, int, int, short*, int, int );
extern void graph_pattern2( int, int, int, char*, int, int );
extern void graph_pattern_xor( int, int, int, short*, int, int );
extern void graph_box( int, int, int, int, int );
extern int graph_push(int, int, int, int );
extern int graph_pop(void);
extern int graph_buffer_start(void);
extern void graph_buffer_end(void);