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

  1. @DATABASE "pLayer/Rect.h"
  2. @MASTER   "Work2:AD/IInc/pLayer/Rect.h"
  3. @REMARK   This file was created by ADtoHT 2.0 on 11-Mär-97  13:35:19
  4. @REMARK   Do not edit
  5. @REMARK   ADtoHT is © 1993-1995 Christian Stieber
  6.  
  7. @NODE MAIN "pLayer/Rect.h"
  8. @TOC "__pOS_Dev.guide/MAIN"
  9.  
  10. @{"pLayer/Rect.h" LINK File}
  11.  
  12.  
  13. @{b}Structures@{ub}
  14.  
  15. @{"pOS_IBox" LINK "pLayer/Rect.h/File" 42}  @{"pOS_Point" LINK "pLayer/Rect.h/File" 26}  @{"pOS_Rectangle" LINK "pLayer/Rect.h/File" 17}  @{"pOS_WBox" LINK "pLayer/Rect.h/File" 50}  @{"pOS_WPoint" LINK "pLayer/Rect.h/File" 34}
  16.  
  17. @ENDNODE
  18. @NODE File "pLayer/Rect.h"
  19. #ifndef __INC_POS_PLAYER_RECT_H
  20. #define __INC_POS_PLAYER_RECT_H
  21. /*******************************************************************
  22.  Includes Release 24
  23.  (C) Copyright 1995-1997 proDAD
  24.      All Rights Reserved
  25.  
  26.  $AUT Holger Burkarth
  27.  $DAT >>Rect.h<<   31 Jul 1996    10:33:25 - (C) ProDAD
  28. *******************************************************************/
  29. #ifndef __INC_POS_PEXEC_TYPES_H
  30. #include <@{"pExec/Types.h" LINK "pExec/Types.h/File"}>
  31. #endif
  32.  
  33. /*----------------------------------
  34. -----------------------------------*/
  35. struct pOS_Rectangle
  36. {
  37.   @{"SLONG" LINK "pExec/Types.h/File" 90}   MinX,MinY;
  38.   @{"SLONG" LINK "pExec/Types.h/File" 90}   MaxX,MaxY;
  39. };
  40.  
  41.  
  42. /*----------------------------------
  43. -----------------------------------*/
  44. struct pOS_Point
  45. {
  46.   @{"SLONG" LINK "pExec/Types.h/File" 90} X,Y;
  47. };
  48.  
  49.  
  50. /*----------------------------------
  51. -----------------------------------*/
  52. struct pOS_WPoint
  53. {
  54.   @{"SWORD" LINK "pExec/Types.h/File" 92} X,Y;
  55. };
  56.  
  57.  
  58. /*----------------------------------
  59. -----------------------------------*/
  60. struct pOS_IBox
  61. {
  62.   @{"SLONG" LINK "pExec/Types.h/File" 90} Left,Top;
  63.   @{"SLONG" LINK "pExec/Types.h/File" 90} Width,Height;
  64. };
  65.  
  66. /*----------------------------------
  67. -----------------------------------*/
  68. struct pOS_WBox
  69. {
  70.   @{"SWORD" LINK "pExec/Types.h/File" 92} Left,Top;
  71.   @{"SWORD" LINK "pExec/Types.h/File" 92} Width,Height;
  72. };
  73.  
  74.  
  75. #endif
  76. @ENDNODE
  77.