aqhome: started rewriting IPC module.

started with basic event interface using unix fd and timers.
This commit is contained in:
Martin Preuss
2025-01-07 22:43:20 +01:00
parent 2ac1182879
commit 28b130ecd4
12 changed files with 1041 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
/****************************************************************************
* 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_FDOBJECT_P_H
#define AQH_FDOBJECT_P_H
#include "./fdobject.h"
typedef struct AQH_FDOBJECT AQH_FDOBJECT;
struct AQH_FDOBJECT {
int fdMode;
int fd;
};
#endif