New upstream version 8.1.0
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
#ifndef FSYNCLOCALFILERESPMSG_H_
|
||||
#define FSYNCLOCALFILERESPMSG_H_
|
||||
|
||||
#include "../SimpleInt64Msg.h"
|
||||
|
||||
|
||||
struct FSyncLocalFileRespMsg;
|
||||
typedef struct FSyncLocalFileRespMsg FSyncLocalFileRespMsg;
|
||||
|
||||
static inline void FSyncLocalFileRespMsg_init(FSyncLocalFileRespMsg* this);
|
||||
|
||||
// getters & setters
|
||||
static inline int64_t FSyncLocalFileRespMsg_getValue(FSyncLocalFileRespMsg* this);
|
||||
|
||||
|
||||
struct FSyncLocalFileRespMsg
|
||||
{
|
||||
SimpleInt64Msg simpleInt64Msg;
|
||||
};
|
||||
|
||||
|
||||
void FSyncLocalFileRespMsg_init(FSyncLocalFileRespMsg* this)
|
||||
{
|
||||
SimpleInt64Msg_init( (SimpleInt64Msg*)this, NETMSGTYPE_FSyncLocalFileResp);
|
||||
}
|
||||
|
||||
int64_t FSyncLocalFileRespMsg_getValue(FSyncLocalFileRespMsg* this)
|
||||
{
|
||||
return SimpleInt64Msg_getValue( (SimpleInt64Msg*)this);
|
||||
}
|
||||
|
||||
|
||||
#endif /*FSYNCLOCALFILERESPMSG_H_*/
|
||||
Reference in New Issue
Block a user