X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=options.h;h=872ac7dfa219b9b3653ec521b384f22873dbb3b0;hp=df952b3a73771f8c9ebe1ebd8b8e8ac9aaf289a8;hb=20a671d76854520ad9d5ea9d481e008240465e62;hpb=ee848d3a9e333b3b91c0e40679c9d0512d511fc2 diff --git a/options.h b/options.h index df952b3..872ac7d 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 */ @@ -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