home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Pascal / MAXONPASCAL2.DMS / in.adf / INCLUDE / intuition / pointerclass.h < prev    next >
Encoding:
Text File  |  1994-07-25  |  1.2 KB  |  37 lines

  1. {$if not def INTUITION_POINTERCLASS_H} CONST INTUITION_POINTERCLASS_H=0;
  2.  
  3. { **************************************************************************
  4.   ** KickPascal-Include-Datei "intuition/pointerclass.h" zu Kickstart 3.0 **
  5.   ************************************************************************** }
  6.  
  7. {$if not def INTUITION_INTUITION_H; incl "intuition/intuition.h";endif }
  8. {$if not def UTILITY_TAGITEM_H; incl "utility/tagitem.h";endif }
  9.  
  10. CONST
  11.  POINTERA_Dummy         = (TAG_USER + $39000);
  12.  POINTERA_BitMap        = (POINTERA_Dummy + $01);
  13.  POINTERA_XOffset       = (POINTERA_Dummy + $02);
  14.  POINTERA_YOffset       = (POINTERA_Dummy + $03);
  15.  POINTERA_WordWidth     = (POINTERA_Dummy + $04);
  16.  POINTERA_XResolution   = (POINTERA_Dummy + $05);
  17.  POINTERA_YResolution   = (POINTERA_Dummy + $06);
  18.  
  19.  
  20.  POINTERXRESN_DEFAULT   = 0;
  21.  POINTERXRESN_140NS     = 1;
  22.  POINTERXRESN_70NS      = 2;
  23.  POINTERXRESN_35NS      = 3;
  24.  
  25.  POINTERXRESN_SCREENRES = 4;
  26.  POINTERXRESN_LORES     = 5;
  27.  POINTERXRESN_HIRES     = 6;
  28.  
  29.  
  30.  POINTERYRESN_DEFAULT           = 0;
  31.  POINTERYRESN_HIGH              = 2;
  32.  POINTERYRESN_HIGHASPECT        = 3;
  33.  POINTERYRESN_SCREENRES         = 4;
  34.  POINTERYRESN_SCREENRESASPECT   = 5;
  35.  
  36. {$endif}
  37.