35 lines
684 B
C
35 lines
684 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_MSGWRITER_P_H
|
|
#define AQH_MSGWRITER_P_H
|
|
|
|
|
|
#include "./msgwriter.h"
|
|
|
|
|
|
|
|
typedef struct AQH_MSG_WRITER AQH_MSG_WRITER;
|
|
struct AQH_MSG_WRITER {
|
|
int msgBufLen;
|
|
const uint8_t *msgBufPtr;
|
|
|
|
int bytesLeft;
|
|
const uint8_t *currentPtr;
|
|
|
|
uint32_t flags;
|
|
|
|
AQH_OBJECT *fdObject;
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|