1 /*****************************************************************************
2  *
3  * SRETENTION.H - Header for state retention routines
4  *
5  * Copyright (c) 1999-2005 Ethan Galstad (nagios@nagios.org)
6  * Last Modified:   11-25-2005
7  *
8  * License:
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License version 2 as
12  * published by the Free Software Foundation.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  *****************************************************************************/
24 
25 #ifdef __cplusplus
26   extern "C" {
27 #endif
28 
29 int save_state_information(char *,int);            /* saves all host and state information */
30 int read_initial_state_information(char *);        /* reads in initial host and state information */
31 
32 #ifdef __cplusplus
33   }
34 #endif
35