28 lines
651 B
C
28 lines
651 B
C
/****************************************************************************
|
|
* This file is part of the project AqHome.
|
|
* AqHome (c) by 2025 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 AQHOMED_DB_H
|
|
#define AQHOMED_DB_H
|
|
|
|
|
|
#include "./server.h"
|
|
|
|
#include "aqhome/events2/object.h"
|
|
#include "aqhome/ipc2/message.h"
|
|
|
|
|
|
void AQH_NodeServer_NodeMsgToDb(AQH_OBJECT *o, const AQH_MESSAGE *msg);
|
|
|
|
void AQH_NodeServer_WriteNodeDb(AQH_OBJECT *o);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|