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

  1. #ifndef FUNCTION_H
  2. #define FUNCTION_H
  3.  
  4. /************************************************************
  5.  *                                                                                                                    *
  6.  * Filename : Function.h                                                                        *
  7.  *                                                                                                                    *
  8.  ************************************************************
  9.  *                                                                                                                    *
  10.  *    Comment : Prototypen                                                                        *
  11.  *                                                                                                                    *
  12.  *                                                                                                                    *
  13.  *                                                                                                                    *
  14.  *            Rev : V1.0                                                                                    *
  15.  *                                                                                                                    *
  16.  *    History : V1.0 erstellen dieses Files                    17.09.89    *
  17.  *                                                                                                                    *
  18.  *            Doc :                                                                                                *
  19.  *                                                                                                                    *
  20.  *         Bugs : keine bekannten                                                                *
  21.  *                                                                                                                    *
  22.  *        Autor : Oesch Silvano                                                                    *
  23.  *                                                                                                                    *
  24.  *        Datum : 17.09.89                                                                            *
  25.  *                                                                                                                    *
  26.  ************************************************************/
  27.  
  28.  
  29.  
  30. void convert(int zahl,char *string);
  31. int prtcommand(    struct MsgPort *port,
  32.                                 struct Prt_Commands *commands,
  33.                                 short nbr);
  34. void SetzeFarben ( struct FarbenFile *file);
  35. void HoleFarben(void);
  36. int LadeFarben( char *filename);
  37. void FarbenLaden(void);
  38. void FarbenSichern(void);
  39. void Rechteck(    struct RastPort *Rp,
  40.                                         int colour,
  41.                                         int x1,int y1,int x2,int y2);
  42. int OpenHelp(void);
  43. void CloseHelp(int zeilen);
  44. void Print (struct RastPort *Rp,char *string,int x,int y);
  45. void PrintPage(int zeile);
  46. int Help(void);
  47. int Oeffne_Screen(int aufloesung);
  48. int openall(void);
  49. void closeall(void);
  50.  
  51. #endif FUNCTION_H
  52.