home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Miscellaneous / WBStars2.0 / source / WBStars_plot.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-24  |  631 b   |  30 lines

  1. /* $VER: WBStars_plot.h 2.0b4 (28 May 1997)
  2. */
  3.  
  4. #ifndef WBSTARS_PLOT_H
  5. #define WBSTARS_PLOT_H
  6.  
  7. /* Values for use in WBStars_plot.c */
  8. extern int    width;
  9. extern int    height;
  10. extern int    Max_Objects;
  11. extern int    Max_Stick;
  12. extern int    Check_Stick;
  13. extern int    V_Flutter;
  14. extern char    Remember;
  15. extern char    Force;
  16.  
  17. /* WBStars_Functions.c */
  18. int    SetPixel(int x, int y, char force);
  19. char    ClearPixel(int x, int y, char color);
  20. char    Test1Pixel(int x, int y);
  21. void    LockPlotArea( void );
  22. void    UnlockPlotArea( void );
  23.  
  24. /* WBStars_plot.c */
  25. void    InitObjects( void );
  26. void    ClearObjects( void );
  27. void    PlotObjects( void );
  28.  
  29. #endif /* WBSTARS_PLOT_H */
  30.