aqhome: more work on transformation to event2/ipc2.

This commit is contained in:
Martin Preuss
2025-02-27 14:08:44 +01:00
parent bebc4c1b0d
commit d887747b3c
45 changed files with 2446 additions and 287 deletions

View File

@@ -0,0 +1,34 @@
/****************************************************************************
* This file is part of the project AqHome.
* AqHome (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 AQHOME_TOOL_CLIENT_P_H
#define AQHOME_TOOL_CLIENT_P_H
#include "./client.h"
typedef struct AQH_TOOL_CLIENT AQH_TOOL_CLIENT;
struct AQH_TOOL_CLIENT {
GWEN_DB_NODE *dbGlobalArgs;
GWEN_DB_NODE *dbLocalArgs;
const GWEN_ARGS *args;
AQH_TOOLCLIENT_CREATEREQUESTMESSAGE_FN createRequestMessageFn;
AQH_TOOLCLIENT_HANDLERESPONSEMESSAGE_FN handleResponseMessageFn;
AQH_OBJECT *ipcEndpoint;
int timeoutInSeconds;
};
#endif