| 169 | |
| 170 | #pragma pack(push, 4) |
| 171 | struct ExtReplyHeader : ExtMsgHeader { |
| 172 | int32_t responseFlags; |
| 173 | int64_t cursorID; |
| 174 | int32_t startingFrom; |
| 175 | int32_t documentCount; |
| 176 | ExtReplyHeader() : responseFlags(0), cursorID(0), startingFrom(0), documentCount(0) { |
| 177 | static_assert(sizeof(ExtReplyHeader) == 36, "ExtReplyHeader size mismatch"); |
| 178 | } |
| 179 | }; |
| 180 | #pragma pack(pop) |
| 181 | |
| 182 | #endif /* _EXT_STRUCTS_H_ */ |
nothing calls this directly
no outgoing calls
no test coverage detected