From e2e218b760df95c71acf894e56a7df8bbe7c838e Mon Sep 17 00:00:00 2001 From: Corey Farrell Date: Tue, 7 Apr 2015 00:36:50 -0400 Subject: [PATCH] doc: document uv_buf_t members MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/libuv/libuv/pull/307 Reviewed-By: Saúl Ibarra Corretgé --- docs/src/misc.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/src/misc.rst b/docs/src/misc.rst index aa3ab6ab373..f01b906ff7a 100644 --- a/docs/src/misc.rst +++ b/docs/src/misc.rst @@ -15,6 +15,17 @@ Data types Buffer data type. + .. c:member:: char* uv_buf_t.base + + Pointer to the base of the buffer. Readonly. + + .. c:member:: size_t uv_buf_t.len + + Total bytes in the buffer. Readonly. + + .. note:: + On Windows this field is ULONG. + .. c:type:: uv_malloc_func Function pointer type for the malloc override used by