2019-02-13 16:36:32 +01:00
|
|
|
/** @file
|
|
|
|
compat_paths addresses compatibility with default OS path names.
|
|
|
|
|
|
|
|
topic: default search paths for config file
|
|
|
|
issue: Linux and Windows use different common paths for config files
|
|
|
|
solution: provide specific default paths for each system
|
|
|
|
*/
|
2018-12-16 11:54:36 +01:00
|
|
|
|
2018-12-16 17:22:34 +01:00
|
|
|
#ifndef INCLUDE_COMPAT_PATHS_H_
|
|
|
|
#define INCLUDE_COMPAT_PATHS_H_
|
2018-12-16 11:54:36 +01:00
|
|
|
|
2019-02-13 16:36:32 +01:00
|
|
|
/// Get default search paths for rtl_433 config file.
|
2018-12-17 14:58:54 +01:00
|
|
|
char **compat_get_default_conf_paths(void);
|
2018-12-16 11:54:36 +01:00
|
|
|
|
2018-12-16 17:22:34 +01:00
|
|
|
#endif /* INCLUDE_COMPAT_PATHS_H_ */
|