diff options
author | eihrul <eihrul> | 2010-06-09 21:48:46 +0000 |
---|---|---|
committer | eihrul <eihrul> | 2010-06-09 21:48:46 +0000 |
commit | fc56be2ebaf492cfddd66ba7246ef549aa45ec13 (patch) | |
tree | a6b2f08f58d17d17258c9a83a08d348271d2d1c0 /include | |
parent | c3b24ac486077975768b6b8dbd8a7ddc52f133bc (diff) | |
download | enet-fc56be2ebaf492cfddd66ba7246ef549aa45ec13.tar.gz enet-fc56be2ebaf492cfddd66ba7246ef549aa45ec13.zip |
doxygen fixes
Diffstat (limited to 'include')
-rw-r--r-- | include/enet/enet.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/enet/enet.h b/include/enet/enet.h index 425e753..2f656d6 100644 --- a/include/enet/enet.h +++ b/include/enet/enet.h @@ -290,17 +290,17 @@ typedef struct _ENetPeer */ typedef struct _ENetCompressor { - /**< Context data for the compressor. Must be non-NULL. */ + /** Context data for the compressor. Must be non-NULL. */ void * context; - /**< Compresses from inBuffers[0..inBufferCount-1], containing inLimit bytes, to outData, outputting at most outLimit bytes. Should return 0 on failure. */ + /** Compresses from inBuffers[0:inBufferCount-1], containing inLimit bytes, to outData, outputting at most outLimit bytes. Should return 0 on failure. */ size_t (ENET_CALLBACK * compress) (void * context, const ENetBuffer * inBuffers, size_t inBufferCount, size_t inLimit, enet_uint8 * outData, size_t outLimit); - /**< Decompresses from inData, containing inLimit bytes, to outData, outputting at most outLimit bytes. Should return 0 on failure. */ + /** Decompresses from inData, containing inLimit bytes, to outData, outputting at most outLimit bytes. Should return 0 on failure. */ size_t (ENET_CALLBACK * decompress) (void * context, const enet_uint8 * inData, size_t inLimit, enet_uint8 * outData, size_t outLimit); - /**< Destroys the context when compression is disabled or the host is destroyed. May be NULL. */ + /** Destroys the context when compression is disabled or the host is destroyed. May be NULL. */ void (ENET_CALLBACK * destroy) (void * context); } ENetCompressor; -/** Callback that computes the checksum of the data held in buffers [0..bufferCount-1] */ +/** Callback that computes the checksum of the data held in buffers[0:bufferCount-1] */ typedef enet_uint32 (ENET_CALLBACK * ENetChecksumCallback) (const ENetBuffer * buffers, size_t bufferCount); /** An ENet host for communicating with peers. |