home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / OS2OMMM.SRC / OMMM_DEF.C < prev    next >
Text File  |  1989-06-01  |  3KB  |  86 lines

  1. /***************************************************************************/
  2. /***                                                                     ***/
  3. /***               oMMM - The Outbound Matrix Message Masher             ***/
  4. /***                      Copyright 1989 BS Software                     ***/
  5. /***                                                                     ***/
  6. /***                         FILENAME: OMMM_DEF.C                         ***/
  7. /***                                                                     ***/
  8. /***                   oMMM Global Variable Definitions                  ***/
  9. /***                                                                     ***/
  10. /***                 Based on the original oMMM, a portion of             ***/
  11. /***               the Opus Computer-Based Conversation System             ***/
  12. /***                     Copyright 1986, Wynn Wagner III                 ***/
  13. /***                                                                     ***/
  14. /***************************************************************************/
  15. /***                                                                     ***/
  16. /***                    Tabs set at every 4th column                     ***/
  17. /***                                                                     ***/
  18. /***************************************************************************/
  19.  
  20. /*
  21.     Polytron Version Control System Comments:
  22.  
  23.     The revision of this file is *** $Revision:   1.40    $ ***
  24.  
  25.     History of changes from 1.30 release version
  26.  
  27.     $Log:    C:/OMMM/PROJFILE/OMMM_DEF.C_V  $
  28.  *
  29.  *      Rev 1.40BP 2 June 1989 23:20:00    Bill Andrus
  30.  * Public Release Version 1.40BP (OS/2 Protect Mode, Bound)
  31.  *
  32.  *      Rev 1.40     12 Feb 1989  4:56:24    Marshall Presnell
  33.  * Public Release Version 1.40
  34.  *
  35.  *      Rev 1.31     31 Jan 1989  0:58:30    Marshall Presnell
  36.  * oMMM 1.35 Beta Release Version
  37.  *
  38.  *      Rev 1.30     23 Jan 1989 17:54:00    Marshall Presnell
  39.  * Public Source Code Release - Version 1.30
  40.  
  41. */
  42.  
  43. /*--------------------------------------------------------------------------*/
  44. /* Include files                                                            */
  45. /*--------------------------------------------------------------------------*/
  46.  
  47. #include  "ommm.h"
  48.  
  49. /*--------------------------------------------------------------------------*/
  50. /* Global variable definitions                                                */
  51. /*--------------------------------------------------------------------------*/
  52.  
  53. unsigned int            i;
  54. int                     j;
  55. struct _pending *        root = NULL;
  56. struct _dta             dta;
  57. char                    template[80];
  58. FILE *                    outfile;
  59. char *                    buffer;
  60. FILE *                    pms = NULL;
  61. unsigned int            mode;
  62. NETADDRESS                cur;
  63. NETADDRESS                dest;
  64. int                     our_zone;
  65. char                    message_path[80];
  66. char                    holding_path[80];
  67. char                    pre_route[80];
  68.  
  69. unsigned int            date_conv = 1;
  70. unsigned int            keepmsgs  = 0;
  71. unsigned int            pkarc      = 0;
  72. unsigned int            use_gates = 0;
  73. unsigned int            noforward = 0;
  74. char                    oldstyle  = 0;
  75.  
  76. char *                    _months[12] = { "Jan", "Feb", "Mar",
  77.                                         "Apr", "May", "Jun",
  78.                                         "Jul", "Aug", "Sep",
  79.                                         "Oct", "Nov", "Dec"
  80.                                       };
  81.  
  82. /*--------------------------------------------------------------------------*/
  83. /*                                  END OF FILE                                */
  84. /*--------------------------------------------------------------------------*/
  85.  
  86.