diff options
Diffstat (limited to 'include/sane/sanei_config.h')
-rw-r--r-- | include/sane/sanei_config.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/include/sane/sanei_config.h b/include/sane/sanei_config.h index cf877cf..3a60167 100644 --- a/include/sane/sanei_config.h +++ b/include/sane/sanei_config.h @@ -52,8 +52,12 @@ #include <stdio.h> #include <sane/sane.h> +#ifdef __cplusplus +extern "C" { +#endif + /** Search configuration file \a name along directory list and return file - * pointer if such a file exists. + * pointer if such a file exists. * * The following directory list is used: * 1st: SANE_CONFIG_DIR environment variable. @@ -127,9 +131,9 @@ extern void sanei_config_attach_matching_devices (const char *name, (const char *dev)); /** this structure holds the description of configuration options. There is - * a list for options and another for their values. + * a list for options and another for their values. * These lists are used when the configuration file is - * parsed. Read values are stored in Option_Value. Helpers functions are + * parsed. Read values are stored in Option_Value. Helpers functions are * provided to access values easily */ typedef struct { @@ -172,4 +176,8 @@ extern SANE_Status sanei_configure_attach ( */ extern const char *sanei_config_get_paths (void); +#ifdef __cplusplus +} // extern "C" +#endif + #endif /* sanei_config_h */ |