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 / NivL2.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-07  |  1.5 KB  |  52 lines

  1. #ifndef NIVL2_H
  2. #define NIVL2_H
  3.  
  4. /****************************************************************
  5. *                                                                                                                                *
  6. *     Filename : NivL2.h                                                                                        *
  7. *                                                                                                                                *
  8. *****************************************************************
  9. *                                                                                                                                *
  10. *        Comment : Includedatei für die Displayfunktionen der                 *
  11. *                            Niveaudarstellung.                                                                *
  12. *                                                                                                                                *
  13. *                Rev : V1.0                                                                                            *
  14. *                                                                                                                                *
  15. *        History : V1.0 erstellen dieses Files                            01/01/90    *
  16. *                                                                                                                                *
  17. *                Doc : Plotlibrary User's Guide                                                    *
  18. *                                                                                                                                *
  19. *             Bugs : keine bekannten                                                                        *
  20. *                                                                                                                                *
  21. *            Autor : Oesch Silvano                                                                            *
  22. *                                                                                                                                *
  23. *            Datum : 01/01/90                                                                                    *
  24. *                                                                                                                                *
  25. ****************************************************************/
  26.  
  27. /****************************************************************
  28. *                                                                                                                                *
  29. *    Definition der Funktionsparameter                                                            *
  30. *                                                                                                                                *
  31. ****************************************************************/
  32.  
  33. #if PROTOTYPEN
  34.  
  35. int drawnivcurves(void);
  36. int checkcorner(int ,int ,int ,int );
  37. int checkniv(void);
  38. void calcrect(int ,int ,int );
  39. void calcstyle(void);
  40.  
  41. #else
  42.  
  43. int drawnivcurves();
  44. int checkcorner();
  45. int checkniv();
  46. void calcrect();
  47. void calcstyle();
  48.  
  49. #endif
  50.  
  51. #endif
  52.