21 lines
567 B
C
21 lines
567 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_IPCMSGREADER_H
|
|
#define AQH_IPCMSGREADER_H
|
|
|
|
#include <aqhome/events2/object.h>
|
|
|
|
|
|
AQH_OBJECT *AQH_IpcMsgReader_new(AQH_EVENT_LOOP *eventLoop, AQH_OBJECT *fdObject);
|
|
|
|
|
|
|
|
#endif
|
|
|