home *** CD-ROM | disk | FTP | other *** search
- /***************************************************************************/
- /*** ***/
- /*** oMMM - The Outbound Matrix Message Masher ***/
- /*** Copyright 1989 BS Software ***/
- /*** ***/
- /*** FILENAME: OMMM_DEF.C ***/
- /*** ***/
- /*** oMMM Global Variable Definitions ***/
- /*** ***/
- /*** Based on the original oMMM, a portion of ***/
- /*** the Opus Computer-Based Conversation System ***/
- /*** Copyright 1986, Wynn Wagner III ***/
- /*** ***/
- /***************************************************************************/
- /*** ***/
- /*** Tabs set at every 4th column ***/
- /*** ***/
- /***************************************************************************/
-
- /*
- Polytron Version Control System Comments:
-
- The revision of this file is *** $Revision: 1.40 $ ***
-
- History of changes from 1.30 release version
-
- $Log: C:/OMMM/PROJFILE/OMMM_DEF.C_V $
- *
- * Rev 1.40 12 Feb 1989 4:56:24 Marshall Presnell
- * Public Release Version 1.40
- *
- * Rev 1.31 31 Jan 1989 0:58:30 Marshall Presnell
- * oMMM 1.35 Beta Release Version
- *
- * Rev 1.30 23 Jan 1989 17:54:00 Marshall Presnell
- * Public Source Code Release - Version 1.30
-
- */
-
- /*--------------------------------------------------------------------------*/
- /* Include files */
- /*--------------------------------------------------------------------------*/
-
- #include "ommm.h"
-
- /*--------------------------------------------------------------------------*/
- /* Global variable definitions */
- /*--------------------------------------------------------------------------*/
-
- unsigned int i;
- int j;
- struct _pending * root = NULL;
- struct _dta dta;
- char template[80];
- FILE * outfile;
- char * buffer;
- FILE * pms = NULL;
- unsigned int mode;
- ADDRESS cur;
- ADDRESS dest;
- int our_zone;
- char message_path[80];
- char holding_path[80];
- char pre_route[80];
-
- unsigned int date_conv = 1;
- unsigned int keepmsgs = 0;
- unsigned int pkarc = 0;
- unsigned int use_gates = 0;
- unsigned int never_gate = 0;
- unsigned int noforward = 0;
- char oldstyle = 0;
-
- char * _months[12] = { "Jan", "Feb", "Mar",
- "Apr", "May", "Jun",
- "Jul", "Aug", "Sep",
- "Oct", "Nov", "Dec"
- };
-
-
- /*-------------------------------------------------------------------------*/
- /* ID: 81.1@3157 Last Changed: 19 Dec 1989 18:37:36 by max */
-