Added GSM network support.
[lcr.git] / options.h
index df952b3..872ac7d 100644 (file)
--- a/options.h
+++ b/options.h
@@ -8,6 +8,9 @@
 ** options header file                                                       **
 **                                                                           **
 \*****************************************************************************/ 
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 struct options {
        char    log[128];               /* location of log file */
@@ -25,6 +28,8 @@ struct options {
        char    email[128];             /* source email address */
        char    lock[128];              /* path of lock files */
        int     socketrights;           /* rights of lcr admin socket */
+
+       int     gsm;                    /* enable gsm support */
 };     
 
 extern struct options options;
@@ -33,4 +38,7 @@ extern char options_error[256];
 
 int read_options(void);
 
+#ifdef __cplusplus
+}
+#endif