34 lines
747 B
C
34 lines
747 B
C
/****************************************************************************
|
|
* This file is part of the project AqHome.
|
|
* AqHome (c) by 2026 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_CGI_MDEVICES_PAGECTX_P_H
|
|
#define AQHOME_CGI_MDEVICES_PAGECTX_P_H
|
|
|
|
|
|
#include "aqhome-cgi/modules/devices/mdevices_pagectx.h"
|
|
|
|
|
|
|
|
struct AQH_MD_PAGECTX {
|
|
GWEN_TREE2_ELEMENT(AQH_MD_PAGECTX);
|
|
|
|
AQCGI_MODULE *module;
|
|
AQH_DATACLIENT *dataClient;
|
|
|
|
const AQH_DEVICE_LIST *deviceList;
|
|
AQH_VALUE_LIST *valueList;
|
|
|
|
GWEN_DB_NODE *dbVars;
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|