home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / sonderh1 / gsxtype.pas < prev    next >
Pascal/Delphi Source File  |  1986-11-25  |  1KB  |  33 lines

  1. {--------------------------------------------------}
  2. {    gsxtype.pas - Pascal GSX Bibliothek:          }
  3. {            Typen-Definitionen                    }
  4. {--------------------------------------------------}
  5.  
  6.   Line_Types           = Solid..DashDotDot;
  7.   Marker_Types         = Dot..Cross;
  8.   Fill_Styles          = Hollow..Hatch;
  9.   Color_Index          = Black..White;
  10.   Draw_Modes           = Replace..Erase;
  11.   Cursor_Operations    = Up..EraToLineEnd;
  12.   Video_Attributes     = Reverse..Normal;
  13.   Circle_Types         = Arc..PieSlice;
  14.   Locator_Devices      = Keyboard..MouseJoystick;
  15.   Input_Devices        = InputLocator..InputString;
  16.   Input_Modes          = Request..Sample;
  17.  
  18. { Die Groessen der folgenden Felder sind Funktions-
  19.   und Anwendungsabhaengig. Sie wurden so gewaehlt,
  20.   dass sie in den meisten Faellen ausreichen
  21.   duerften.                                        }
  22.  
  23.   VDI_contrl    = ARRAY [1..10] OF INTEGER;
  24.   VDI_intin     = ARRAY [1..255] OF INTEGER;
  25.   VDI_intout    = ARRAY [1..45] OF INTEGER;
  26.   VDI_ptsin     = ARRAY [1..100] OF INTEGER;
  27.   VDI_ptsout    = ARRAY [1..100] OF INTEGER;
  28.  
  29.   VDI_STRING    = STRING[80];
  30.  
  31. {--------------------------------------------------}
  32.              { Ende von gsxtype.pas }
  33.