1 | |
---|
2 | /* file evbullet.h |
---|
3 | * ========== |
---|
4 | * |
---|
5 | * version 1, 28-Jul-93 |
---|
6 | * |
---|
7 | * header file of module evbullet.c |
---|
8 | * K. Stammler, 28-Jul-93 |
---|
9 | */ |
---|
10 | |
---|
11 | |
---|
12 | /* |
---|
13 | * |
---|
14 | * SeismicHandler, seismic analysis software |
---|
15 | * Copyright (C) 1996, Klaus Stammler, Federal Institute for Geosciences |
---|
16 | * and Natural Resources (BGR), Germany |
---|
17 | * |
---|
18 | * This program is free software; you can redistribute it and/or modify |
---|
19 | * it under the terms of the GNU General Public License as published by |
---|
20 | * the Free Software Foundation; either version 2 of the License, or |
---|
21 | * (at your option) any later version. |
---|
22 | * |
---|
23 | * This program is distributed in the hope that it will be useful, |
---|
24 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
25 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
26 | * GNU General Public License for more details. |
---|
27 | * |
---|
28 | * You should have received a copy of the GNU General Public License |
---|
29 | * along with this program; if not, write to the Free Software |
---|
30 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
---|
31 | * |
---|
32 | */ |
---|
33 | |
---|
34 | |
---|
35 | |
---|
36 | /*-------------------------------------------------------------------*/ |
---|
37 | |
---|
38 | |
---|
39 | void EfPutBulletin( FILE *bull, EvEventT *event, EvStatusT *status ); |
---|
40 | |
---|
41 | /* Puts event to bulletin file |
---|
42 | * |
---|
43 | * parameters of routine |
---|
44 | * FILE *bull; input; pointer to output file |
---|
45 | * EvEventT *event; input; event information |
---|
46 | * EvStatusT *status; output; return status |
---|
47 | */ |
---|
48 | |
---|
49 | |
---|
50 | /*-------------------------------------------------------------------*/ |
---|
51 | |
---|
52 | |
---|
53 | void EfSetBulletinHeader( char header[] ); |
---|
54 | |
---|
55 | /* Sets header text of bulletin |
---|
56 | * |
---|
57 | * parameters of routine |
---|
58 | * char header[]; input; header text |
---|
59 | */ |
---|
60 | |
---|
61 | |
---|
62 | /*-------------------------------------------------------------------*/ |
---|