LDFLAGS -> LDLIBS
[gnokii.git] / smsd / smsd.h
1 /*
2
3   S M S D
4
5   A Linux/Unix GUI for Nokia mobile phones.
6   Copyright (C) 1999 Pavel Janík ml., Hugh Blemings
7   & Ján Derfiòák <ja@mail.upjs.sk>.
8
9   Released under the terms of the GNU GPL, see file COPYING for more details.
10
11   Last modification: Sun Dec 17 2000
12   Modified by Jan Derfinak
13
14 */
15
16 #ifndef SMSD_H
17 #define SMSD_H
18
19 #include <glib.h>
20
21 typedef struct {
22   gchar *initlength; /* Init length from .gnokiirc file */
23   gchar *model;      /* Model from .gnokiirc file. */
24   gchar *port;       /* Serial port from .gnokiirc file */
25   gchar *connection; /* Connection type from .gnokiirc file */
26   gchar *bindir;
27   gint   smsSets:4;
28 } SmsdConfig;
29
30 extern SmsdConfig smsdConfig;
31 extern gint WriteSMS (GSM_SMSMessage *);
32
33 #endif