home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / MAXMAILP.ZIP / MAX_VR.H < prev    next >
C/C++ Source or Header  |  1990-10-12  |  3KB  |  59 lines

  1. /***************************************************************************
  2.  *                                                                         *
  3.  *  MAXIMUS-CBCS Source Code, Version 1.02                                 *
  4.  *  Copyright 1989, 1990 by Scott J. Dudley.  All rights reserved.         *
  5.  *                                                                         *
  6.  *  Maximus version number information                                     *
  7.  *                                                                         *
  8.  *  For complete details of the licensing restrictions, please refer to    *
  9.  *  the licence agreement, which is published in its entirety in MAX.C     *
  10.  *  and LICENCE.MAX.                                                       *
  11.  *                                                                         *
  12.  *  USE OF THIS FILE IS SUBJECT TO THE RESTRICTIONS CONTAINED IN THE       *
  13.  *  MAXIMUS-CBCS LICENSING AGREEMENT.  IF YOU DO NOT FIND THE TEXT OF THIS *
  14.  *  AGREEMENT IN ANY OF THE  AFOREMENTIONED FILES, OR IF YOU DO NOT HAVE   *
  15.  *  THESE FILES, YOU SHOULD IMMEDIATELY CONTACT THE AUTHOR AT ONE OF THE   *
  16.  *  ADDRESSES LISTED BELOW.  IN NO EVENT SHOULD YOU PROCEED TO USE THIS    *
  17.  *  FILE WITHOUT HAVING ACCEPTED THE TERMS OF THE MAXIMUS-CBCS LICENSING   *
  18.  *  AGREEMENT, OR SUCH OTHER AGREEMENT AS YOU ARE ABLE TO REACH WITH THE   *
  19.  *  AUTHOR.                                                                *
  20.  *                                                                         *
  21.  *  You can contact the author at one of the address listed below:         *
  22.  *                                                                         *
  23.  *  Scott Dudley           FidoNet  1:249/106                              *
  24.  *  777 Downing St.        IMEXnet  89:483/202                             *
  25.  *  Kingston, Ont.         Internet f106.n249.z1.fidonet.org               *
  26.  *  Canada - K7M 5N3       BBS      (613) 389-8315 - HST/14.4K, 24hrs      *
  27.  *                                                                         *
  28.  ***************************************************************************/
  29.  
  30. #ifndef __MAX_VR_DEFINED
  31. #define __MAX_VR_DEFINED
  32.  
  33. #ifndef extrn
  34. #define extrn
  35. #endif
  36.  
  37. #ifndef IS
  38. #define IS(x) =x
  39. #endif
  40.  
  41. #define VER "1.02"
  42. #define BETA_TEST " (non-commercial)"
  43.  
  44. #ifndef OS_2
  45. #define VERSION VER
  46. #else
  47. #define VERSION VER ".OS/2.B0"
  48. #endif
  49.  
  50. extrn char *name IS("MAXIMUS-CBCS"),
  51.            *us IS("Maximus-CBCS"),
  52.            *version IS(VERSION),
  53.            *xfer_id IS("Maximus " VERSION),
  54.            *test IS(BETA_TEST "\0\0\0\0\0"),
  55.            *tear_ver IS(VERSION /*BETA_TEST*/);
  56.  
  57. #endif
  58.  
  59.