25 lines
615 B
C
25 lines
615 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_DEVICESDUMP_H
|
|
#define AQHOME_NODES_DEVICESDUMP_H
|
|
|
|
|
|
#include "./aqhomed.h"
|
|
#include "aqhome-nodes/types/device.h"
|
|
|
|
|
|
|
|
void AqHomeNodes_DumpDevices(const AQHNODE_DEVICE_LIST *devList, GWEN_BUFFER *dbuf);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|