~ubuntu-branches/ubuntu/oneiric/bogofilter/oneiric

« back to all changes in this revision

Viewing changes to src/bogotune.h

  • Committer: Bazaar Package Importer
  • Author(s): Clint Adams
  • Date: 2004-06-27 09:22:31 UTC
  • Revision ID: james.westby@ubuntu.com-20040627092231-u26smic0nhp7rl4z
Tags: upstream-0.92.0
ImportĀ upstreamĀ versionĀ 0.92.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: bogotune.h,v 1.2 2004/05/06 13:41:53 relson Exp $ */
 
2
 
 
3
/*****************************************************************************
 
4
 
 
5
NAME:
 
6
   bogotune.h -- definitions and prototypes for bogotune.c
 
7
 
 
8
******************************************************************************/
 
9
 
 
10
#ifndef BOGOTUNE_H
 
11
#define BOGOTUNE_H
 
12
 
 
13
/* typedefs */
 
14
 
 
15
typedef struct result_s {
 
16
    uint idx;
 
17
    uint rsi;
 
18
    uint mdi;
 
19
    uint rxi;
 
20
    uint spi;
 
21
    uint nsi;
 
22
 
 
23
    double rs;
 
24
    double md;
 
25
    double rx;
 
26
    double co;
 
27
    double sp_exp;
 
28
    double ns_exp;
 
29
 
 
30
    uint fp;
 
31
    uint fn;
 
32
} result_t;
 
33
 
 
34
#endif