home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 073.lha / FileIO / alerts.h < prev    next >
C/C++ Source or Header  |  1987-06-02  |  1KB  |  42 lines

  1.  
  2. #ifndef ALERTAUTO_H
  3. #define ALERTAUTO_H
  4.  
  5. /* **************************************************************************
  6.  *
  7.  * Alert AutoRequest Definitions
  8.  *     from Book 1 of the Amiga Programmers' Suite by RJ Mical
  9.  *
  10.  * Copyright (C) 1986, =Robert J. Mical=
  11.  * All Rights Reserved.
  12.  *
  13.  * Any or all of this code can be used in any program as long as this
  14.  * entire notice is retained, ok?
  15.  *
  16.  * HISTORY      NAME            DESCRIPTION
  17.  * -----------  --------------  --------------------------------------------
  18.  * 11 Jul 86    RJ >:-{)*       Prepare (clean house) for release
  19.  * 1 Feb 86     =RJ Mical=      Created this file.
  20.  *
  21.  * *********************************************************************** */
  22.  
  23.  
  24.  
  25. /* === ALERT Definitions ================================================ */
  26. #define ALERT_ABORT                 0   /* Always zero! */
  27. #define ALERT_NO_MEMORY             1   /* This and below are duplicates ... */
  28. #define ALERT_OUTOFMEM              1   /* ... intentionally because I forget */
  29. #define ALERT_BAD_DIRECTORY     2
  30.  
  31.  
  32. #define ALERT_TEXT_TOP   6
  33. #define ALERT_TEXT_LEFT  6
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40. #endif  /* of ALERTAUTO_H */
  41.  
  42.