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 / Screen.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-11  |  1.3 KB  |  51 lines

  1. #ifndef MYSCREEN_H
  2. #define MYSCREEN_H
  3.  
  4. /****************************************************************
  5.  *                                                                                                                            *
  6.  * Filename : Screen.h                                                                                    *
  7.  *                                                                                                                            *
  8.  ****************************************************************
  9.  *                                                                                                                            *
  10.  *    Comment : Definition des Screens und des Zeichensatzes.            *
  11.  *                                                                                                                            *
  12.  *                                                                                                                            *
  13.  *                                                                                                                            *
  14.  *            Rev : V1.0                                                                                            *
  15.  *                                                                                                                            *
  16.  *    History : V1.0 erstellen dieses Files                            20.06.89    *
  17.  *                                                                                                                            *
  18.  *            Doc : Intuition Reference Manual                                                *
  19.  *                                                                                                                            *
  20.  *         Bugs : keine bekannten                                                                        *
  21.  *                                                                                                                            *
  22.  *        Autor : Oesch Silvano                                                                            *
  23.  *                                                                                                                            *
  24.  *        Datum : 20.06.89                                                                                    *
  25.  *                                                                                                                            *
  26.  ****************************************************************/
  27.  
  28. struct TextAttr TOPAZ80 =
  29. {
  30.     (STRPTR)"topaz.font",
  31.     TOPAZ_EIGHTY,0,0
  32. };
  33.  
  34. extern char ScreenNamen[];
  35.  
  36. struct NewScreen newscreen =
  37. {
  38.     0,0,
  39.     SCREENBREITE,0,
  40.     BITPLANE,
  41.     0,1,
  42.     HIRES,
  43.     CUSTOMSCREEN,
  44.     &TOPAZ80,
  45.     NULL,
  46.     NULL,
  47.     NULL
  48. };
  49.  
  50. #endif MYSCREEN_H
  51.