~ubuntu-branches/ubuntu/precise/dspam/precise

« back to all changes in this revision

Viewing changes to src/read_config.h

  • Committer: Bazaar Package Importer
  • Author(s): Trent Lloyd
  • Date: 2006-03-21 07:23:12 UTC
  • Revision ID: james.westby@ubuntu.com-20060321072312-jba9a1avit4r1y6s
Tags: upstream-3.6.4
ImportĀ upstreamĀ versionĀ 3.6.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: read_config.h,v 1.8 2006/01/18 16:48:53 jonz Exp $ */
 
2
 
 
3
/*
 
4
 DSPAM
 
5
 COPYRIGHT (C) 2002-2006 DEEP LOGIC INC.
 
6
 
 
7
 This program is free software; you can redistribute it and/or
 
8
 modify it under the terms of the GNU General Public License
 
9
 as published by the Free Software Foundation; version 2
 
10
 of the License.
 
11
 
 
12
 This program is distributed in the hope that it will be useful,
 
13
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 GNU General Public License for more details.
 
16
 
 
17
 You should have received a copy of the GNU General Public License
 
18
 along with this program; if not, write to the Free Software
 
19
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
20
 
 
21
*/
 
22
 
 
23
#ifndef _READ_CONFIG_H
 
24
#define _READ_CONFIG_H
 
25
 
 
26
#ifdef HAVE_CONFIG_H
 
27
#include <auto-config.h>
 
28
#endif
 
29
 
 
30
#include "config_shared.h"
 
31
#include "libdspam.h"
 
32
#include "pref.h"
 
33
 
 
34
config_t read_config (const char *path);
 
35
int configure_algorithms (DSPAM_CTX * CTX);
 
36
 
 
37
agent_pref_t pref_config(void);
 
38
config_t agent_config;
 
39
 
 
40
#endif /* _READ_CONFIG_H */