home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / libs / plotlib.lha / Plot_1.lzh / Header / LoadL2.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-07  |  1.7 KB  |  57 lines

  1. #ifndef LOADL2_H
  2. #define LOADL2_H
  3.  
  4. /****************************************************************
  5. *                                                                                                                                *
  6. *     Filename : LoadL2.h                                                                                    *
  7. *                                                                                                                                *
  8. *****************************************************************
  9. *                                                                                                                                *
  10. *        Comment : Includedatei für Plotlibrary Level 2                            *
  11. *                            Alle Funktionen für die Ladefunktionen sind                *
  12. *                            hier aufgeführt.                                                                    *
  13. *                                                                                                                                *
  14. *                Rev : V1.0                                                                                            *
  15. *                                                                                                                                *
  16. *        History : V1.0 erstellen dieses Files                            15/11/89    *
  17. *                                                                                                                                *
  18. *                Doc : Plotlibrary User's Guide                                                    *
  19. *                                                                                                                                *
  20. *             Bugs : keine bekannten                                                                        *
  21. *                                                                                                                                *
  22. *            Autor : Oesch Silvano                                                                            *
  23. *                                                                                                                                *
  24. *            Datum : 10/12/89                                                                                    *
  25. *                                                                                                                                *
  26. ****************************************************************/
  27.  
  28. /****************************************************************
  29. *                                                                                                                                *
  30. *    Definition der Funktionsparameter                                                            *
  31. *                                                                                                                                *
  32. ****************************************************************/
  33.  
  34. #ifdef PROTOTYPEN
  35.  
  36. int loaddata(char *,int );
  37. int getheader(FILE *);
  38. void contoup(char *);
  39. int load2d(FILE *,struct Curve *);
  40. int loadniv(FILE *,struct Curve *);
  41. int load3d(FILE *,struct Curve *);
  42. DATA *reallocval(struct Curve *);
  43.  
  44. #else
  45.  
  46. int loaddata();
  47. int getheader();
  48. void contoup();
  49. int load2d();
  50. int loadniv();
  51. int load3d();
  52. DATA *reallocval();
  53.  
  54. #endif
  55.  
  56. #endif
  57.