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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/*
LibRCC - module comunicating with rcc-external helper application
Copyright (C) 2005-2008 Suren A. Chilingaryan <csa@dside.dyndns.org>
This program is free software; you can redistribute it and/or modify it
under the terms of version 2 of the GNU General Public License as published
by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
#ifndef _RCC_EXTERNAL_H
#define _RCC_EXTERNAL_H
#include "../config.h"
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif /* HAVE_SYS_TYPES_H */
typedef enum rcc_external_module_t {
RCC_EXTERNAL_MODULE_CONTROL = 0,
RCC_EXTERNAL_MODULE_OPTIONS,
RCC_EXTERNAL_MODULE_LIBRTRANSLATE,
RCC_EXTERNAL_MODULE_MAX
} rcc_external_module;
struct rcc_external_info_t {
int s;
};
typedef struct rcc_external_info_t rcc_external_info_s;
typedef struct rcc_external_info_t *rcc_external_info;
typedef enum rcc_external_option_t {
RCC_EXTERNAL_OPTION_OFFLINE = 0,
RCC_EXTERNAL_OPTION_MAX
} rcc_external_option;
struct rcc_external_command_t {
unsigned long size;
unsigned char cmd;
};
typedef struct rcc_external_command_t rcc_external_command_s;
typedef struct rcc_external_command_t *rcc_external_command;
#define RCC_EXTERNAL_COMMAND_CLOSE 0
int rccExternalInit();
void rccExternalFree();
int rccExternalAllowOfflineMode();
size_t rccExternalWrite(int s, const char *buffer, ssize_t size, unsigned long timeout);
size_t rccExternalRead(int s, char *buffer, ssize_t size, unsigned long timeout);
int rccExternalConnect(unsigned char module);
void rccExternalClose(int s);
#endif /* _RCC_EXTERNAL_H */
|