home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Pascal / MAXONPASCAL2.DMS / in.adf / INCLUDE / prefs / pointer.h < prev    next >
Encoding:
Text File  |  1994-07-25  |  880 b   |  41 lines

  1. {$if not def PREFS_POINTER_H} CONST PREFS_POINTER_H=TRUE;
  2.  
  3. { *****************************************************************
  4.   ** KickPascal-Include-Datei "prefs/pointer.h" zu Kickstart 3.0 **
  5.   ***************************************************************** }
  6.  
  7. {$if not def LIBRARIES_IFFPARSE_H;incl "libraries/iffparse.h";endif}
  8.  
  9. CONST
  10.  ID_PNTR = $504e5452; { "PNTR" }
  11.  
  12. TYPE
  13.  p_PointerPrefs=^PointerPrefs;
  14.  PointerPrefs = RECORD
  15.   pp_Reserved   : array[0..3] of Long;
  16.   pp_Which      : Word;
  17.   pp_Size       : Word;
  18.   pp_Width      : Word;
  19.   pp_Height     : Word;
  20.   pp_Depth      : Word;
  21.   pp_YSize      : Word;
  22.   pp_X,pp_Y     : Word;
  23.  
  24.   { Color Table: numEntries = (1 shl pp_Depth) - 1 }
  25.   { Daten folgen }
  26.  end;
  27.  
  28. CONST
  29.  WBP_NORMAL = 0;
  30.  WBP_BUSY   = 1;
  31.  
  32. TYPE 
  33.  p_RGBTable=^RGBTable;
  34.  RGBTable = RECORD
  35.   t_Red  : Byte;
  36.   t_Green: Byte;
  37.   t_Blue : Byte;
  38.  end;
  39.  
  40. {$endif}
  41.