X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=options.h;h=ec8f1c13ee5f3c13f37029bd3f21ca99c9ed2dfc;hp=a0dbad4eaf3e81eab488be0e54cfe7c83088af1d;hb=6bf7c7f9db360d6031417b012dcb0e90e2251cd6;hpb=1bfbfbf903777d13df3107fbc89bdaeb2af9f2d6 diff --git a/options.h b/options.h index a0dbad4..ec8f1c1 100644 --- 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 gsm; /* enable gsm support */ }; extern struct options options; +extern char options_error[256]; + int read_options(void); +#ifdef __cplusplus +} +#endif