27 lines
577 B
C
27 lines
577 B
C
/****************************************************************************
|
|
* This file is part of the project AqHome.
|
|
* AqHome (c) by 2025 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_IPC_SERVER_P_H
|
|
#define AQH_IPC_SERVER_P_H
|
|
|
|
|
|
#include "./ipc_server.h"
|
|
|
|
|
|
|
|
typedef struct AQH_IPC_SERVER AQH_IPC_SERVER;
|
|
struct AQH_IPC_SERVER {
|
|
AQH_OBJECT *tcpdObject;
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|