26 lines
662 B
C
26 lines
662 B
C
/****************************************************************************
|
|
* This file is part of the project AqHome.
|
|
* AqHome (c) by 2024 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 AQHOME_NODES_DEVICESREAD_H
|
|
#define AQHOME_NODES_DEVICESREAD_H
|
|
|
|
|
|
#include "./aqhomed.h"
|
|
#include "aqhome-nodes/types/device.h"
|
|
|
|
|
|
|
|
AQHNODE_DEVICE_LIST *AqHomeNodes_ReadDeviceFile(const char *sFilename);
|
|
AQHNODE_DEVICE_LIST *AqHomeNodes_ReadDataDeviceFiles(void);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|