home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / x / volume19 / xfig / part01 / u_create.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-27  |  1.2 KB  |  36 lines

  1. /*
  2.  * FIG : Facility for Interactive Generation of figures
  3.  * Copyright (c) 1985 by Supoj Sutanthavibul
  4.  *
  5.  * "Permission to use, copy, modify, distribute, and sell this software and its
  6.  * documentation for any purpose is hereby granted without fee, provided that
  7.  * the above copyright notice appear in all copies and that both the copyright
  8.  * notice and this permission notice appear in supporting documentation. 
  9.  * No representations are made about the suitability of this software for 
  10.  * any purpose.  It is provided "as is" without express or implied warranty."
  11.  */
  12.  
  13. extern F_arc   *create_arc();
  14. extern F_ellipse *create_ellipse();
  15. extern F_line  *create_line();
  16. extern F_spline *create_spline();
  17. extern F_text  *create_text();
  18. extern F_compound *create_compound();
  19. extern F_eps   *create_eps();
  20. extern F_point *create_point();
  21. extern F_control *create_cpoint();
  22.  
  23. extern F_arc   *copy_arc();
  24. extern F_ellipse *copy_ellipse();
  25. extern F_line  *copy_line();
  26. extern F_spline *copy_spline();
  27. extern F_text  *copy_text();
  28. extern F_compound *copy_compound();
  29.  
  30. extern F_point *copy_points();
  31. extern F_arrow *forward_arrow();
  32. extern F_arrow *backward_arrow();
  33. extern F_arrow *new_arrow();
  34. extern char    *new_string();
  35. extern F_linkinfo *new_link();
  36.