home *** CD-ROM | disk | FTP | other *** search
- #ifndef LOADL2_H
- #define LOADL2_H
-
- /****************************************************************
- * *
- * Filename : LoadL2.h *
- * *
- *****************************************************************
- * *
- * Comment : Includedatei für Plotlibrary Level 2 *
- * Alle Funktionen für die Ladefunktionen sind *
- * hier aufgeführt. *
- * *
- * Rev : V1.0 *
- * *
- * History : V1.0 erstellen dieses Files 15/11/89 *
- * *
- * Doc : Plotlibrary User's Guide *
- * *
- * Bugs : keine bekannten *
- * *
- * Autor : Oesch Silvano *
- * *
- * Datum : 10/12/89 *
- * *
- ****************************************************************/
-
- /****************************************************************
- * *
- * Definition der Funktionsparameter *
- * *
- ****************************************************************/
-
- #ifdef PROTOTYPEN
-
- int loaddata(char *,int );
- int getheader(FILE *);
- void contoup(char *);
- int load2d(FILE *,struct Curve *);
- int loadniv(FILE *,struct Curve *);
- int load3d(FILE *,struct Curve *);
- DATA *reallocval(struct Curve *);
-
- #else
-
- int loaddata();
- int getheader();
- void contoup();
- int load2d();
- int loadniv();
- int load3d();
- DATA *reallocval();
-
- #endif
-
- #endif
-