34 lines
858 B
C
34 lines
858 B
C
/****************************************************************************
|
|
* This file is part of the project AqHome.
|
|
* AqHome (c) by 2023 Martin Preuss, all rights reserved.
|
|
*
|
|
* The license for this file can be found in the file COPYING which you
|
|
* should have received along with this file.
|
|
****************************************************************************/
|
|
|
|
#ifndef AQH_AQHOME_H
|
|
#define AQH_AQHOME_H
|
|
|
|
|
|
#include <aqhome/api.h>
|
|
|
|
#include <gwenhywfar/stringlist.h>
|
|
#include <gwenhywfar/db.h>
|
|
|
|
|
|
|
|
AQHOME_API int AQH_Init(void);
|
|
AQHOME_API void AQH_Fini(void);
|
|
|
|
AQHOME_API GWEN_DB_NODE *AQH_LoadConfigFile(void);
|
|
AQHOME_API void AQH_MergeConfigFileIntoConfig(GWEN_DB_NODE *dbArgs, const char *destDbGroupName);
|
|
|
|
AQHOME_API GWEN_STRINGLIST *AQH_GetGlobalDataDirs(void);
|
|
AQHOME_API GWEN_STRINGLIST *AQH_GetGlobalSysconfDirs(void);
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|