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

  1. /*
  2.  * MKSoft Development Amiga ToolKit V1.0
  3.  *
  4.  *                          DiskSpeed v4.0
  5.  *                                by
  6.  *                           Michael Sinz
  7.  *
  8.  *             Copyright (c) 1989 by MKSoft Development
  9.  *
  10.  *            MKSoft Development
  11.  *            163 Appledore Drive
  12.  *            Downingtown, PA 19335
  13.  *
  14.  * Yes, this is yet another disk speed testing program, but with a few
  15.  * differences.  It was designed to give the most accurate results of the
  16.  * true disk performance in the system.  For this reason many of
  17.  * DiskSpeed's results may look either lower or higher than current disk
  18.  * performance tests.
  19.  *
  20.  ******************************************************************************
  21.  *                                          *
  22.  *    Reading legal mush can turn your brain into guacamole!              *
  23.  *                                          *
  24.  *        So here is some of that legal mush:                  *
  25.  *                                          *
  26.  * Permission is hereby granted to distribute this program's source          *
  27.  * executable, and documentation for non-commercial purposes, so long as the  *
  28.  * copyright notices are not removed from the sources, executable or          *
  29.  * documentation.  This program may not be distributed for a profit without   *
  30.  * the express written consent of the author Michael Sinz.              *
  31.  *                                          *
  32.  * This program is not in the public domain.                      *
  33.  *                                          *
  34.  * Fred Fish is expressly granted permission to distribute this program's     *
  35.  * source and executable as part of the "Fred Fish freely redistributable     *
  36.  * Amiga software library."                              *
  37.  *                                          *
  38.  * Permission is expressly granted for this program and it's source to be     *
  39.  * distributed as part of the Amicus Amiga software disks, and the          *
  40.  * First Amiga User Group's Hot Mix disks.                      *
  41.  *                                          *
  42.  ******************************************************************************
  43.  */
  44.  
  45. /*
  46.  * Make border structures with the correct box info...
  47.  */
  48.  
  49. #ifndef    MKS_MAKEBOXES_H
  50. #define    MKS_MAKEBOXES_H
  51.  
  52. #include    <exec/types.h>
  53. #include    <intuition/intuition.h>
  54.  
  55. VOID    FillTopLeft_Border(struct Border *,SHORT,SHORT);
  56. VOID    FillBottomRight_Border(struct Border *,SHORT,SHORT);
  57.  
  58. #endif    /* MKS_MAKEBOXES_H */
  59.