home *** CD-ROM | disk | FTP | other *** search
- {$if not def PREFS_POINTER_H} CONST PREFS_POINTER_H=TRUE;
-
- { *****************************************************************
- ** KickPascal-Include-Datei "prefs/pointer.h" zu Kickstart 3.0 **
- ***************************************************************** }
-
- {$if not def LIBRARIES_IFFPARSE_H;incl "libraries/iffparse.h";endif}
-
- CONST
- ID_PNTR = $504e5452; { "PNTR" }
-
- TYPE
- p_PointerPrefs=^PointerPrefs;
- PointerPrefs = RECORD
- pp_Reserved : array[0..3] of Long;
- pp_Which : Word;
- pp_Size : Word;
- pp_Width : Word;
- pp_Height : Word;
- pp_Depth : Word;
- pp_YSize : Word;
- pp_X,pp_Y : Word;
-
- { Color Table: numEntries = (1 shl pp_Depth) - 1 }
- { Daten folgen }
- end;
-
- CONST
- WBP_NORMAL = 0;
- WBP_BUSY = 1;
-
- TYPE
- p_RGBTable=^RGBTable;
- RGBTable = RECORD
- t_Red : Byte;
- t_Green: Byte;
- t_Blue : Byte;
- end;
-
- {$endif}
-