Add more const-ness to the stream endpoint/pipe functions where possible.
[pub/lufa.git] / LUFA / Drivers / Misc / RingBuffer.h
index 9319f11..dd34e99 100644 (file)
                 */\r
                typedef struct\r
                {\r
-                       uint8_t* In; /**< Current storage location in the circular buffer */\r
-                       uint8_t* Out; /**< Current retrieval location in the circular buffer */\r
-                       uint8_t* Start; /**< Pointer to the start of the buffer's underlying storage array */\r
-                       uint8_t* End; /**< Pointer to the end of the buffer's underlying storage array */\r
-                       uint8_t  Size; /**< Size of the buffer's underlying storage array */\r
-                       uint16_t Count; /**< Number of bytes currently stored in the buffer */\r
+                       uint8_t* In; /**< Current storage location in the circular buffer. */\r
+                       uint8_t* Out; /**< Current retrieval location in the circular buffer. */\r
+                       uint8_t* Start; /**< Pointer to the start of the buffer's underlying storage array. */\r
+                       uint8_t* End; /**< Pointer to the end of the buffer's underlying storage array. */\r
+                       uint8_t  Size; /**< Size of the buffer's underlying storage array. */\r
+                       uint16_t Count; /**< Number of bytes currently stored in the buffer. */\r
                } RingBuffer_t;\r
 \r
        /* Inline Functions: */\r