home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / DC-POS24.LZX / pOS / IncPOS.lzx / pLayer / Rect.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-18  |  1.1 KB  |  58 lines

  1. #ifndef __INC_POS_PLAYER_RECT_H
  2. #define __INC_POS_PLAYER_RECT_H
  3. /*******************************************************************
  4.  Includes Release 24
  5.  (C) Copyright 1995-1997 proDAD
  6.      All Rights Reserved
  7.  
  8.  $AUT Holger Burkarth
  9.  $DAT >>Rect.h<<   31 Jul 1996    10:33:25 - (C) ProDAD
  10. *******************************************************************/
  11. #ifndef __INC_POS_PEXEC_TYPES_H
  12. #include <pExec/Types.h>
  13. #endif
  14.  
  15. /*----------------------------------
  16. -----------------------------------*/
  17. struct pOS_Rectangle
  18. {
  19.   SLONG   MinX,MinY;
  20.   SLONG   MaxX,MaxY;
  21. };
  22.  
  23.  
  24. /*----------------------------------
  25. -----------------------------------*/
  26. struct pOS_Point
  27. {
  28.   SLONG X,Y;
  29. };
  30.  
  31.  
  32. /*----------------------------------
  33. -----------------------------------*/
  34. struct pOS_WPoint
  35. {
  36.   SWORD X,Y;
  37. };
  38.  
  39.  
  40. /*----------------------------------
  41. -----------------------------------*/
  42. struct pOS_IBox
  43. {
  44.   SLONG Left,Top;
  45.   SLONG Width,Height;
  46. };
  47.  
  48. /*----------------------------------
  49. -----------------------------------*/
  50. struct pOS_WBox
  51. {
  52.   SWORD Left,Top;
  53.   SWORD Width,Height;
  54. };
  55.  
  56.  
  57. #endif
  58.