New upstream version 8.1.0
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#ifndef FLOCKENTRYRESPMSG_H_
|
||||
#define FLOCKENTRYRESPMSG_H_
|
||||
|
||||
#include <common/net/message/SimpleIntMsg.h>
|
||||
#include <common/storage/StorageErrors.h>
|
||||
|
||||
/**
|
||||
* This message is for deserialiazation (incoming) only, serialization is not implemented!!
|
||||
*/
|
||||
|
||||
struct FLockEntryRespMsg;
|
||||
typedef struct FLockEntryRespMsg FLockEntryRespMsg;
|
||||
|
||||
static inline void FLockEntryRespMsg_init(FLockEntryRespMsg* this);
|
||||
|
||||
struct FLockEntryRespMsg
|
||||
{
|
||||
SimpleIntMsg simpleIntMsg;
|
||||
};
|
||||
|
||||
|
||||
void FLockEntryRespMsg_init(FLockEntryRespMsg* this)
|
||||
{
|
||||
SimpleIntMsg_init( (SimpleIntMsg*)this, NETMSGTYPE_FLockEntryResp);
|
||||
}
|
||||
|
||||
#endif /* FLOCKENTRYRESPMSG_H_ */
|
||||
Reference in New Issue
Block a user