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

  1. #ifndef OPCLL2_H
  2. #define OPCLL2_H
  3.  
  4. /****************************************************************
  5. *                                                                                                                                *
  6. *     Filename : OpClL2.h                                                                                    *
  7. *                                                                                                                                *
  8. *****************************************************************
  9. *                                                                                                                                *
  10. *        Comment : Includedatei für Plotlibrary Level 2                            *
  11. *                            Alle Funktionen für das öffnen und schliessen der    *
  12. *                            Library sind 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 : 15/11/89                                                                                    *
  25. *                                                                                                                                *
  26. ****************************************************************/
  27.  
  28. /****************************************************************
  29. *                                                                                                                                *
  30. *    Definition der Funktionsparameter                                                            *
  31. *                                                                                                                                *
  32. ****************************************************************/
  33.  
  34. #ifdef PROTOTYPEN
  35.  
  36. int createplot(void);
  37. void initplot(void);
  38. void datainit(void);
  39. void closeplot(void);
  40.  
  41. #else
  42.  
  43. int createplot();
  44. void initplot();
  45. void datainit();
  46. void closeplot();
  47.  
  48. #endif
  49.  
  50. #endif
  51.