home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 576.lha / DiskSpeed_v4.0 / makeboxes.c < prev    next >
C/C++ Source or Header  |  1991-09-11  |  3KB  |  92 lines

  1. /*
  2.  * MKSoft Development Amiga ToolKit V1.0
  3.  *
  4.  * Copyright (c) 1985,86,87,88,89,90 by MKSoft Development
  5.  *
  6.  *                          DiskSpeed v4.0
  7.  *                                by
  8.  *                           Michael Sinz
  9.  *
  10.  *             Copyright (c) 1989 by MKSoft Development
  11.  *
  12.  *            MKSoft Development
  13.  *            163 Appledore Drive
  14.  *            Downingtown, PA 19335
  15.  *
  16.  * Yes, this is yet another disk speed testing program, but with a few
  17.  * differences.  It was designed to give the most accurate results of the
  18.  * true disk performance in the system.  For this reason many of
  19.  * DiskSpeed's results may look either lower or higher than current disk
  20.  * performance tests.
  21.  *
  22.  ******************************************************************************
  23.  *                                          *
  24.  *    Reading legal mush can turn your brain into guacamole!              *
  25.  *                                          *
  26.  *        So here is some of that legal mush:                  *
  27.  *                                          *
  28.  * Permission is hereby granted to distribute this program's source          *
  29.  * executable, and documentation for non-commercial purposes, so long as the  *
  30.  * copyright notices are not removed from the sources, executable or          *
  31.  * documentation.  This program may not be distributed for a profit without   *
  32.  * the express written consent of the author Michael Sinz.              *
  33.  *                                          *
  34.  * This program is not in the public domain.                      *
  35.  *                                          *
  36.  * Fred Fish is expressly granted permission to distribute this program's     *
  37.  * source and executable as part of the "Fred Fish freely redistributable     *
  38.  * Amiga software library."                              *
  39.  *                                          *
  40.  * Permission is expressly granted for this program and it's source to be     *
  41.  * distributed as part of the Amicus Amiga software disks, and the          *
  42.  * First Amiga User Group's Hot Mix disks.                      *
  43.  *                                          *
  44.  ******************************************************************************
  45.  */
  46.  
  47. /*
  48.  * Make border structures with the correct box info...
  49.  */
  50.  
  51. #include    <exec/types.h>
  52. #include    <intuition/intuition.h>
  53.  
  54. #include    "MakeBoxes.h"
  55.  
  56. /*
  57.  * Note:  The routines do fill in the '0' values even though
  58.  *      the array was, most likely, already zero'd
  59.  */
  60.  
  61. /*
  62.  * This function makes a top-left border array based on the
  63.  * x/y size of the box...
  64.  */
  65. VOID    FillTopLeft_Border(struct Border *bd,SHORT xSize,SHORT ySize)
  66. {
  67. register    SHORT    *xy;
  68.  
  69.     xy=bd->XY;
  70.     xy[0]=xSize-2;        xy[1]=0;
  71.     xy[2]=0;        xy[3]=0;
  72.     xy[4]=0;        xy[5]=ySize-1;
  73.     xy[6]=1;        xy[7]=ySize-2;
  74.     xy[8]=1;        xy[9]=1;
  75. }
  76.  
  77. /*
  78.  * This function makes a bottom-right border array based on the
  79.  * x/y size of the box...
  80.  */
  81. VOID    FillBottomRight_Border(struct Border *bd,SHORT xSize,SHORT ySize)
  82. {
  83. register    SHORT    *xy;
  84.  
  85.     xy=bd->XY;
  86.     xy[0]=1;        xy[1]=ySize-1;
  87.     xy[2]=xSize-1;        xy[3]=ySize-1;
  88.     xy[4]=xSize-1;        xy[5]=0;
  89.     xy[6]=xSize-2;        xy[7]=1;
  90.     xy[8]=xSize-2;        xy[9]=ySize-2;
  91. }
  92.