Renamed files timer* to eventtimer*

This commit is contained in:
Martin Preuss
2023-10-13 00:48:47 +02:00
parent 16e08d623d
commit a3f866f69c
5 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,34 @@
/****************************************************************************
* 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_EVENT_TIMER_P_H
#define AQH_EVENT_TIMER_P_H
#include "aqhome/events/eventtimer.h"
struct AQH_EVENT_TIMER {
GWEN_INHERIT_ELEMENT(AQH_EVENT_TIMER)
GWEN_LIST_ELEMENT(AQH_EVENT_TIMER)
uint32_t flags;
int timerType;
uint64_t id;
uint64_t currentValue;
uint64_t reloadOrAlarmValue;
int eventType;
};
#endif