home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / comms / comprgs / osrc_149.lzh / ommm_def.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-20  |  3.1 KB  |  83 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.40   12 Feb 1989  4:56:24   Marshall Presnell
  30.  * Public Release Version 1.40
  31.  * 
  32.  *    Rev 1.31   31 Jan 1989  0:58:30   Marshall Presnell
  33.  * oMMM 1.35 Beta Release Version
  34.  * 
  35.  *    Rev 1.30   23 Jan 1989 17:54:00   Marshall Presnell
  36.  * Public Source Code Release - Version 1.30
  37.  
  38. */
  39.  
  40. /*--------------------------------------------------------------------------*/
  41. /* Include files                                                            */
  42. /*--------------------------------------------------------------------------*/
  43.  
  44. #include  "ommm.h"
  45.  
  46. /*--------------------------------------------------------------------------*/
  47. /* Global variable definitions                                              */
  48. /*--------------------------------------------------------------------------*/
  49.  
  50. unsigned int            i;
  51. int                        j;
  52. struct _pending *        root = NULL;
  53. struct _dta                dta;
  54. char                    template[80];
  55. FILE *                    outfile;
  56. char *                    buffer;
  57. FILE *                    pms    = NULL;
  58. unsigned int            mode;
  59. ADDRESS                    cur;
  60. ADDRESS                    dest;
  61. int                        our_zone;
  62. char                    message_path[80];
  63. char                    holding_path[80];
  64. char                    pre_route[80];
  65.  
  66. unsigned int            date_conv = 1;
  67. unsigned int            keepmsgs  = 0;
  68. unsigned int            pkarc      = 0;
  69. unsigned int            use_gates = 0;
  70. unsigned int            never_gate = 0;
  71. unsigned int            noforward = 0;
  72. char                    oldstyle  = 0;
  73.  
  74. char *                    _months[12] = { "Jan", "Feb", "Mar",
  75.                                         "Apr", "May", "Jun",
  76.                                         "Jul", "Aug", "Sep",
  77.                                         "Oct", "Nov", "Dec"
  78.                                       };
  79.  
  80.  
  81. /*-------------------------------------------------------------------------*/
  82. /* ID: 81.1@3157  Last Changed: 19 Dec 1989 18:37:36 by max */
  83.