This commit was manufactured by cvs2svn to create branch 'uc'.
[gnokii.git] / include / data / virtmodem.h
1 /*
2
3   G N O K I I
4
5   A Linux/Unix toolset and driver for Nokia mobile phones.
6
7   Released under the terms of the GNU GPL, see file COPYING for more details.
8
9   Header file for virtmodem code in virtmodem.c
10
11 */
12
13 #ifndef __virtmodem_h
14 #define __virtmodem_h
15
16 /* Prototypes */
17
18 bool VM_Initialise(char *model,
19                    char *port,
20                    char *initlength,
21                    GSM_ConnectionType connection,
22                    char *bindir,
23                    bool debug_mode,
24                    bool GSM_Init,
25                    char *synchronizetime);
26 int  VM_PtySetup(char *bindir);
27 void VM_ThreadLoop(void);
28 void VM_CharHandler(void);
29 int  VM_GetMasterPty(char **name);
30 void VM_Terminate(void);
31 GSM_Error VM_GSMInitialise(char *model,
32                            char *port,
33                            char *initlength,
34                            GSM_ConnectionType connection,
35                            char *synchronizetime);
36
37 #endif  /* __virtmodem_h */