aqhome: added PATH module, started VARS module.
those might later get incorporated into libgwenhywfar.
This commit is contained in:
35
aqhome/data/vars_p.h
Normal file
35
aqhome/data/vars_p.h
Normal file
@@ -0,0 +1,35 @@
|
||||
/****************************************************************************
|
||||
* This file is part of the project Gwenhywfar.
|
||||
* Gwenhywfar (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_VARS_P_H
|
||||
#define AQH_VARS_P_H
|
||||
|
||||
|
||||
#include "./vars.h"
|
||||
|
||||
|
||||
|
||||
struct AQH_VARS {
|
||||
GWEN_TREE2_ELEMENT(AQH_VARS);
|
||||
|
||||
AQH_VARS_DATATYPE dataType;
|
||||
uint32_t flags;
|
||||
union {
|
||||
char *dataString;
|
||||
int dataInt;
|
||||
double dataDouble;
|
||||
} data;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user