#ifndef FLOCKRANGERESPMSG_H_ #define FLOCKRANGERESPMSG_H_ #include #include /** * This message is for deserialiazation (incoming) only, serialization is not implemented!! */ struct FLockRangeRespMsg; typedef struct FLockRangeRespMsg FLockRangeRespMsg; static inline void FLockRangeRespMsg_init(FLockRangeRespMsg* this); struct FLockRangeRespMsg { SimpleIntMsg simpleIntMsg; }; void FLockRangeRespMsg_init(FLockRangeRespMsg* this) { SimpleIntMsg_init( (SimpleIntMsg*)this, NETMSGTYPE_FLockRangeResp); } #endif /* FLOCKRANGERESPMSG_H_ */