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 >
C/C++ Source or Header  |  1996-02-29  |  939b  |  33 lines

  1. #ifndef TRUE
  2.     #define TRUE 1
  3. #endif
  4. #ifndef FALSE
  5.     #define FALSE 0
  6. #endif
  7.  
  8. typedef    struct    {
  9.     int        h, v, hword ;
  10.     unsigned short    *pat0, *pat1 ;
  11. }
  12.     Sheet ;
  13.  
  14. /*    graphpc.c    */
  15. extern    void    graph_init( void );
  16. extern    void    graph_exit( void );
  17. extern    void    graph_line( int, int, int, int, int );
  18. extern    void    graph_dashline( int, int, int, int, int );
  19. extern    void    graph_cls( int );
  20. extern    void    graph_fill( int, int, int, int, int );
  21. extern    void    graph_palet( int, int, int, int );
  22. extern    void    graph_puts( char*, int, int, int );
  23. extern    void    graph_pattern( int, int, int, short*, int, int );
  24. extern    void    graph_pattern2( int, int, int, char*, int, int );
  25. extern    void    graph_pattern_xor( int, int, int, short*, int, int );
  26. extern    void    graph_box( int, int, int, int, int );
  27. extern    int        graph_push(int, int, int, int );
  28. extern    int        graph_pop(void);
  29. extern    int        graph_buffer_start(void);
  30. extern    void    graph_buffer_end(void);
  31.  
  32.  
  33.