diff --git a/Makefile.am b/Makefile.am index 903630be..f58cc92b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,7 +22,8 @@ pkginclude_HEADERS = include/log.h include/plugin.h include/history.h \ include/private-network.h include/cdma-netreg.h \ include/cdma-provision.h include/handsfree.h \ include/handsfree-audio.h include/siri.h \ - include/netmon.h include/lte.h include/ims.h + include/netmon.h include/lte.h include/ims.h \ + include/storage.h nodist_pkginclude_HEADERS = include/version.h diff --git a/include/storage.h b/include/storage.h new file mode 100644 index 00000000..243eb88b --- /dev/null +++ b/include/storage.h @@ -0,0 +1,32 @@ +/* + * + * oFono - Open Telephony stack for Linux + * + * Copyright (C) 2017 Jolla Ltd. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + */ + +#ifndef __OFONO_STORAGE_H +#define __OFONO_STORAGE_H + +#ifdef __cplusplus +extern "C" { +#endif + +const char *ofono_config_dir(void); +const char *ofono_storage_dir(void); + +#ifdef __cplusplus +} +#endif + +#endif /* __OFONO_STORAGE_H */