fixup
[lcr.git] / options.h
index a0dbad4..d7e7603 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 */
@@ -19,15 +22,22 @@ struct options {
 
        char    tones_dir[64];          /* directory of all tones/patterns */
        char    fetch_tones[256];       /* directories of tones to fetch */
-       char    extensions_dir[64];     /* directory of extensions */
        char    dummyid[32];            /* caller id for external calls if not available */
-       int     dsptones;               /* tones will be generated via dsp.o 1=american 2=ger */
        int     schedule;               /* run process in realtime @ given priority */
        char    email[128];             /* source email address */
+       char    lock[128];              /* path of lock files */
+       int     socketrights;           /* rights of lcr admin socket */
+       int     socketuser;             /* socket chown to this user */
+       int     socketgroup;            /* socket chgrp to this group */
+       int     polling;
+       char    otp_dir[256];           /* directory of OTP files */
 };     
 
 extern struct options options;
 
-int read_options(void);
+int read_options(char *options_error);
 
+#ifdef __cplusplus
+}
+#endif