~ubuntu-branches/ubuntu/lucid/sblim-sfcb/lucid

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * $Id: control.h,v 1.4 2009/03/24 19:02:19 smswehla Exp $
 *
 * (C) Copyright IBM Corp. 2005
 *
 * THIS FILE IS PROVIDED UNDER THE TERMS OF THE ECLIPSE PUBLIC LICENSE
 * ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS FILE
 * CONSTITUTES RECIPIENTS ACCEPTANCE OF THE AGREEMENT.
 *
 * You can obtain a current copy of the Eclipse Public License from
 * http://www.opensource.org/licenses/eclipse-1.0.php
 *
 * Author:        Adrian Schuur <schuur@de.ibm.com>
 *
 * Description:
 *
 * sfcb.cfg config parser
 *
 */

#ifndef _CONTROL_
#define _CONTROL_

int setupControl(char *fn);
void sunsetControl();
int getControlChars(char *id, char **val);
int getControlUNum(char *id, unsigned int *val);
int getControlNum(char *id, long *val);
int getControlBool(char *id, int *val);

#endif