aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-06-02 08:07:49 +0000
committerChristian Grothoff <christian@grothoff.org>2015-06-02 08:07:49 +0000
commit689d2dc98d2d24fb2da79db5fa08a83bc98cdb8b (patch)
tree3a2552cb26ab3ba50d40a8ba9afd8c3f05cddb6e
parentb7ab035907795383dc2f9bf6cf7fb3f288fa6b94 (diff)
downloadlibmicrohttpd-689d2dc98d2d24fb2da79db5fa08a83bc98cdb8b.tar.gz
libmicrohttpd-689d2dc98d2d24fb2da79db5fa08a83bc98cdb8b.zip
-comment on data types
-rw-r--r--src/include/microhttpd.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index d1d828e0..6107067e 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -2023,6 +2023,8 @@ MHD_create_response_from_buffer (size_t size,
2023 * @return NULL on error (i.e. invalid arguments, out of memory) 2023 * @return NULL on error (i.e. invalid arguments, out of memory)
2024 * @ingroup response 2024 * @ingroup response
2025 */ 2025 */
2026/* NOTE: this should be 'uint64_t' instead of 'size_t', but changing
2027 this would break API compatibility. */
2026_MHD_EXTERN struct MHD_Response * 2028_MHD_EXTERN struct MHD_Response *
2027MHD_create_response_from_fd (size_t size, 2029MHD_create_response_from_fd (size_t size,
2028 int fd); 2030 int fd);
@@ -2044,6 +2046,8 @@ MHD_create_response_from_fd (size_t size,
2044 * @return NULL on error (i.e. invalid arguments, out of memory) 2046 * @return NULL on error (i.e. invalid arguments, out of memory)
2045 * @ingroup response 2047 * @ingroup response
2046 */ 2048 */
2049/* NOTE: this should be 'uint64_t' instead of 'size_t', but changing
2050 this would break API compatibility. */
2047_MHD_EXTERN struct MHD_Response * 2051_MHD_EXTERN struct MHD_Response *
2048MHD_create_response_from_fd_at_offset (size_t size, 2052MHD_create_response_from_fd_at_offset (size_t size,
2049 int fd, 2053 int fd,