This repository has been archived on 2022-06-27. You can view files and clone it, but cannot push or open issues or pull requests.
Xash3DArchive/engine/common/net_encode.c

35 lines
808 B
C
Raw Normal View History

2010-06-23 22:00:00 +02:00
//=======================================================================
// Copyright XashXT Group 2010 <20>
// net_encode.c - encode network messages
//=======================================================================
#include "common.h"
#include "byteorder.h"
#include "mathlib.h"
// UNDER CONSTRUCTION!!!
void MSG_DeltaAddEncoder( char *name, pfnDeltaEncode encodeFunc )
{
}
int MSG_DeltaFindField( delta_t *pFields, const char *fieldname )
{
return 0;
}
void MSG_DeltaSetField( delta_t *pFields, const char *fieldname )
{
}
void MSG_DeltaUnsetField( delta_t *pFields, const char *fieldname )
{
}
void MSG_DeltaSetFieldByIndex( struct delta_s *pFields, int fieldNumber )
{
}
void MSG_DeltaUnsetFieldByIndex( struct delta_s *pFields, int fieldNumber )
{
}