00001 00002 /* 00003 * THIS FILE IS UNDER RCS - DO NOT MODIFY UNLESS YOU HAVE 00004 * CHECKED IT OUT USING THE COMMAND CHECKOUT. 00005 * 00006 * $Id: earthworm_8h-source.html 2161 2006-05-19 16:55:03Z paulf $ 00007 * 00008 * Revision history: 00009 * $Log$ 00009 * Revision 1.1 2006/05/19 16:55:01 paulf 00009 * first inclusion 00009 * 00010 * Revision 1.9 2001/04/06 21:03:30 davidk 00011 * moved the guts of earthworm.h into three separate files, which 00012 * are now #include'd in earthworm.h. 00013 * 00014 * Revision 1.8 2001/04/05 18:31:04 cjbryan 00015 * added prototype for RecursiveCreateDir 00016 * also added MAX_DIR_LEN for max path lenghts 00017 * 00018 * Revision 1.7 2001/03/21 23:12:31 cjbryan 00019 * *** empty log message *** 00020 * 00021 * Revision 1.6 2000/09/28 22:10:08 dietz 00022 * *** empty log message *** 00023 * 00024 * Revision 1.5 2000/08/09 16:47:55 lucky 00025 * Added prototype for html_logit (to quiet down lint) 00026 * 00027 * Revision 1.4 2000/07/27 16:15:56 lucky 00028 * Added constants to set the max number of phases, and related max 00029 * sizes of events in the database, which are different than the 00030 * pre-existing limits on the events processed by hypoinverse 00031 * 00032 * Revision 1.3 2000/07/24 20:49:17 lucky 00033 * Added MAX_MOD_STR, MAX_INST_STR, MAX_RING_STR, and MAX_TYPE_STR in 00034 * order to implement global limits to module, installation, ring, 00035 * and message type strings. 00036 * 00037 * Revision 1.2 2000/07/20 17:45:32 lucky 00038 * Increased MAX_PHS_PER_EQ to accomodate large events, especially of Dewey type. 00039 * 00040 * Revision 1.1 2000/02/14 20:05:54 lucky 00041 * Initial revision 00042 * 00043 * 00044 */ 00045 00046 00047 /*************************************************** 00048 * earthworm.h * 00049 * * 00050 * Earthworm administrative setup: * 00051 * global info for all installations * 00052 * * 00053 ***************************************************/ 00054 00055 #ifndef EARTHWORM_H 00056 #define EARTHWORM_H 00057 00058 /* include simple definitions */ 00059 #include <earthworm_defs.h> 00060 00061 /* include simple functions whose prototypes do 00062 not require any convoluted STUFF from platform.h */ 00063 #include <earthworm_simple_funcs.h> 00064 00065 /* include the really ugly stuff that won't event compile 00066 without platform.h or other include files */ 00067 #include <earthworm_complex_funcs.h> 00068 00069 #endif